-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (41 loc) · 1.03 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
[package]
name = "memento"
version = "0.1.0"
authors = [
"Anonymous",
]
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["use_clwb"]
tcrash = []
no_persist = []
use_clflushopt = []
use_clwb = []
use_msync = []
stat_print_flushes = []
stress = []
pmdk = []
pmcheck = ["pmdk"]
[dependencies]
mmt_derive = { path = "./src/derive" }
crossbeam-epoch = { path = "./crossbeam-persistency/crossbeam-epoch" }
crossbeam-utils = { path = "./crossbeam-persistency/crossbeam-utils" }
# crossbeam-channel = "0.5.6"
crossbeam-channel = { path = "./crossbeam-persistency/crossbeam-channel" }
atomic = "0.5"
etrace = "1.1.1"
tempfile = "3.3.0"
array-init = "2.1.0"
lazy_static = "1.4.0"
itertools = "0.10.5"
fasthash = "0.4.0"
cfg-if = "1.0.0"
tinyvec = { version = "1.6.0", features = ["alloc", "rustc_1_40"] }
libc = "0.2.138"
num_cpus = "1.14.0"
pmemobj-sys = { path = "./ext/pmdk-rs/pmemobj-sys" }
[dev-dependencies]
log = "0.4.17"
rusty-fork = "0.3.0"