-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
40 lines (32 loc) · 1.06 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
38
39
40
[package]
name = "atone"
version = "0.3.7"
authors = ["Jon Gjengset <jon@thesquareplanet.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "A VecDeque and Vec variant that spreads resize load across pushes."
repository = "https://github.com/jonhoo/atone.git"
keywords = ["vec", "no_std", "vecdeque", "amortized"]
categories = ["data-structures", "no-std"]
[dependencies]
# For external trait impls
rayon_ = { version = "1.0", optional = true, package = "rayon" }
serde_ = { version = "1.0.114", default-features = false, optional = true, package = "serde" }
[dev-dependencies]
lazy_static = "1.2"
rand = { version = "0.8.0", features = ["small_rng"] }
quickcheck = { version = "1.0", default-features = false }
rayon_ = { version = "1.2.0", package = "rayon" }
serde_test = "1.0.114"
serde_json = "1.0.56"
[features]
serde = [ "serde_" ]
rayon = [ "rayon_" ]
[target.'cfg(not(target_env="msvc"))'.dev-dependencies]
jemallocator = "0.5"
[package.metadata.docs.rs]
features = ["rayon", "serde"]
[[bench]]
name = "vroom"
harness = false