-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (32 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "ds-ext"
version = "0.3.0"
authors = ["code@tinychain.net"]
edition = "2021"
license = "Apache-2.0"
description = "Extensions to standard Rust data structures which provide additional capabilities"
repository = "https://github.com/haydnv/ds-ext"
readme = "README.md"
categories = ["data-structures"]
keywords = ["ordered", "set", "map", "custom", "order"]
[[bench]]
name = "ordmap_vs_btreemap"
harness = false
[features]
all = ["hash", "stream", "serialize"]
hash = ["async-hash", "hex"]
stream = ["async-trait", "destream"]
serialize = ["serde"]
[dependencies]
async-hash = { version = "~0.5.4", optional = true }
async-trait = { version = "0.1", optional = true }
derive_more = { version = "1.0", features=["display"] }
destream = { version = "0.8", optional = true }
get-size = "0.1"
get-size-derive = "0.1"
hex = { version = "0.4", optional = true }
safecast = "0.2"
serde = { version = "1.0", optional = true }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
rand = "0.8"