-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (32 loc) · 1.02 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 = "cmap"
version = "0.3.0"
description = "Concurrent multi-writer hash-map using trie"
repository = "https://github.com/bnclabs/cmap"
documentation = "https://docs.rs/cmap"
keywords = ["concurrent", "lockless", "map", "data-structures"]
categories = ["algorithms", "database", "data-structure"]
authors = ["prataprc <[email protected]>"]
license = "MIT"
edition = "2018"
readme = "README.md"
[profile.release]
debug = true
[profile.bench]
debug = true
[[bin]]
name = "perf"
required-features = ["perf"]
[dependencies]
cityhash-rs = "1.0.0"
dashmap = { version = "4.0.2", optional = true }
flurry = { version = "0.3.1", optional = true }
rand = { version = "0.8.4", features = ["std_rng"], optional = true }
structopt = { version = "0.3.20", default-features = false, optional = true }
[dev-dependencies]
rand = { version = "0.8.4", features = ["std_rng"] }
arbitrary = { version = "0.4.7", features = ["derive"] }
dashmap = { version = "4.0.2"}
[features]
perf = ["structopt", "rand", "dashmap", "flurry"]
compact = []