-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
39 lines (32 loc) · 1 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
[package]
name = "ppar"
version = "0.3.1"
description = "Persistent immutable array"
repository = "https://github.com/bnclabs/ppar"
documentation = "https://docs.rs/ppar"
keywords = ["immutable", "persistent", "rope", "array", "concurrent"]
categories = ["data-structures"]
authors = ["prataprc <[email protected]>"]
license = "MIT"
edition = "2018"
readme = "./README.md"
[profile.release]
debug = true
[profile.bench]
debug = true
[lib]
name = "ppar"
[[bin]]
name = "perf"
required-features = ["perf"]
[dependencies]
arbitrary = { version = "0.4.7", features = ["derive"], optional = true }
structopt = { version = "0.3.20", default-features = false, optional = true }
rand = { version = "0.8.4", features = ["std_rng"], optional = true}
im = { version = "15.0.0", optional = true }
im-rc = { version = "15.0.0", optional = true }
[dev-dependencies]
rand = { version = "0.8.4", features = ["std_rng"]}
arbitrary = { version = "0.4.7", features = ["derive"] }
[features]
perf = ["structopt", "rand", "im", "im-rc"]