-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
67 lines (58 loc) · 1.41 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
58
59
60
61
62
63
64
65
66
67
[workspace]
members = [
"./smrs/hp-pp",
"./smrs/nbr",
"./smrs/cdrc",
"./smrs/hp-brcu",
"./smrs/vbr",
"./smrs/circ",
]
[package]
name = "smr-benchmark"
version = "0.1.0"
authors = ["authors"]
edition = "2021"
description = "SMR Benchmark: A Microbenchmark Suite for Concurrent Safe Memory Reclamation Schemes"
repository = "https://github.com/kaist-cp/smr-benchmark"
readme = "README.md"
[dependencies]
bitflags = "2.5"
cfg-if = "1.0"
clap = { version = "4.5.4", features = ["derive", "string"] }
crossbeam-utils = "0.8"
csv = "1.3.0"
rand = "0.8"
typenum = "1.17"
num = "0.4.3"
arrayvec = "0.7.6"
scopeguard = "1"
hp_pp = { path = "./smrs/hp-pp" }
nbr = { path = "./smrs/nbr" }
cdrc = { path = "./smrs/cdrc" }
hp-brcu = { path = "./smrs/hp-brcu" }
vbr = { path = "./smrs/vbr" }
circ = { path = "./smrs/circ" }
[target.'cfg(target_os = "linux")'.dependencies]
tikv-jemallocator = "0.5"
tikv-jemalloc-ctl = "0.5"
[dependencies.crossbeam-ebr]
package = "crossbeam-epoch"
git = "https://github.com/kaist-cp/crossbeam"
branch = "smr-benchmark"
[dependencies.crossbeam-pebr]
package = "crossbeam-pebr-epoch"
git = "https://github.com/kaist-cp/crossbeam"
branch = "pebr"
[profile.release]
lto = true
codegen-units = 1
[profile.release-with-debug]
inherits = "release"
debug = true
[profile.release-simple]
inherits = "release"
debug = true
lto = false
codegen-units = 16
[features]
sanitize = ["crossbeam-pebr/sanitize"]