-
Notifications
You must be signed in to change notification settings - Fork 113
/
Cargo.toml
57 lines (51 loc) · 1.26 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
49
50
51
52
53
54
55
56
57
[package]
name = "im"
version = "15.1.0"
authors = ["Bodil Stokke <[email protected]>"]
edition = "2018"
rust-version = "1.46.0"
license = "MPL-2.0+"
description = "Immutable collection datatypes"
repository = "https://github.com/bodil/im-rs"
documentation = "http://immutable.rs/"
homepage = "http://immutable.rs/"
readme = "./README.md"
categories = ["data-structures"]
keywords = ["immutable", "persistent", "hamt", "b-tree", "rrb-tree"]
build = "./build.rs"
exclude = [
"dist/**",
"rc/**",
"release.toml",
"Makefile.toml",
"proptest-regressions/**"
]
[package.metadata.docs.rs]
all-features = true
[lib]
path = "./src/lib.rs"
[build-dependencies]
version_check = "0.9"
[features]
debug = []
[dependencies]
typenum = "1.12"
bitmaps = "2"
sized-chunks = "0.6.4"
rand_core = "0.6"
rand_xoshiro = "0.6"
quickcheck = { version = "1", optional = true }
proptest = { version = "1", optional = true }
serde = { version = "1", optional = true }
rayon = { version = "1", optional = true }
refpool = { version = "0.4", optional = true }
arbitrary = { version = "1.1", optional = true }
[dev-dependencies]
proptest = "1"
serde = "1"
serde_json = "1"
rayon = "1"
rand = { version = "0.8", features = ["small_rng"] }
pretty_assertions = "1"
metrohash = "1"
proptest-derive = "0.3"