forked from xacrimon/conc-map-bench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (33 loc) · 931 Bytes
/
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
[package]
name = "conc-map-bench"
version = "0.1.0"
authors = ["Acrimon <joel.wejdenstal@gmail.com>"]
edition = "2018"
publish = false
[dependencies]
bustle = { git = "https://github.com/willothy/bustle" }
tracing-subscriber = "0.3.17"
num_cpus = "1.16.0"
ahash = "0.8.3"
chashmap = "2.2.2"
contrie = "0.1.4"
flurry = "0.4.0"
dashmap = { version = "6.0.0-rc.1", features = ["inline"] }
crossbeam-epoch = { version = "0.9.15", package = "crossbeam-epoch" }
parking_lot = "0.12.1"
evmap = "10.0.2"
seize = "0.2.5"
crossbeam-skiplist = { git = "https://github.com/crossbeam-rs/crossbeam" }
structopt = "0.3.26"
json = "0.12.4"
csv = "1.2.2"
serde = { version = "1.0.185", features = ["derive"] }
plotters = "0.3.5"
scc = "2.0.3"
whirlwind = { git = "https://github.com/fortress-build/whirlwind" }
futures = "0.3.31"
tokio = { version = "1.41.0", features = ["full"] }
[profile.release]
codegen-units = 1
panic = "abort"
lto = "fat"