-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (42 loc) · 1.08 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
41
42
43
44
45
46
47
48
[package]
name = "pvec"
version = "0.2.1"
authors = ["Araz Abishov <[email protected]>"]
description = "RRB-Tree based persistent vector implementation."
edition = "2018"
license = "MIT"
repository = "https://github.com/ArazAbishov/pvec-rs"
documentation = "https://docs.rs/pvec/"
readme = "README.md"
keywords = ["persistent", "data-structures", "collections"]
categories = ["data-structures"]
exclude = ["/.github/*", "/benches/words/words.txt", "/reports/*"]
autobenches = false
[workspace]
members = [
"web-vis",
"benches-mem",
"benches-mem/benches"
]
[dependencies]
serde = { version = "1.0.73", features = ["rc"], optional = true}
serde_json = { version = "1.0.26", optional = true }
serde_derive = { version = "1.0.73", optional = true }
rayon = { version = "1.1.0", optional = true }
[dev-dependencies]
im-rc = "14.0.0"
im = "14.0.0"
rand_xorshift = "0.1"
criterion = "0.3.1"
rand = "0.6"
num = "0.2.0"
[features]
serde_serializer = ["serde", "serde_json", "serde_derive"]
rayon_iter = ["rayon"]
small_branch = []
arc = []
[lib]
bench = false
[[bench]]
name = "lib"
harness = false