-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (71 loc) · 2.23 KB
/
Copy pathCargo.toml
File metadata and controls
74 lines (71 loc) · 2.23 KB
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
68
69
70
71
72
73
74
[workspace]
resolver = "2"
members = [
"core",
"nomt",
"nomt-test-utils",
"fuzz",
"torture",
"examples/*",
"trickfs",
"trickfs/trickmnt",
]
exclude = ["benchtop"]
[workspace.package]
authors = ["thrum"]
homepage = "https://thrum.dev"
repository = "https://github.com/thrumdev/nomt"
edition = "2021"
license = "MIT/Apache-2.0"
[workspace.dependencies]
borsh = { version = "1.5.7", default-features = false, features = ["derive"] }
bitvec = { version = "1", default-features = false, features = ["alloc"] }
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }
ruint = { version = "1.18.0", default-features = false }
arrayvec = { version = "0.7", default-features = false }
blake3 = { version = "1.5.1", default-features = false }
sha2 = { version = "0.10.6", default-features = false }
anyhow = { version = "1.0.102", features = ["backtrace"] }
parking_lot = { version = "0.12.3", features = ["arc_lock", "send_guard"] }
threadpool = "1.8.1"
twox-hash = { version = "2.1.0", default-features = false, features = ["std", "xxhash3_64"] }
fxhash = "0.2.1"
dashmap = "5.5.3"
crossbeam = "0.8.4"
crossbeam-channel = "0.5.15"
slab = "0.4.9"
rand = "0.10.1"
ahash = "0.8.11"
imbl = "3.0.0"
lru = "0.18.0"
libc = "0.2.155"
criterion = { version = "0.8" }
thread_local = "1.1.8"
cfg-if = "1.0.0"
io-uring = "0.6.4"
loom = { version = "0.7", features = ["checkpoint"] }
rand_pcg = "0.10.2"
hex-literal = "0.4"
tempfile = "3.8.1"
lazy_static = "1.5.0"
quickcheck = "1.1.0"
nix = { version = "0.29", features = ["process"] }
serde = { version = "1.0.216", default-features = false, features = ["derive"] }
tokio = { version = "1.52.2", features = ["full"] }
tokio-util = { version = "0.7.18", features = ["codec"] }
tokio-stream = "0.1.18"
futures = "0.3.31"
tokio-serde = { version = "0.9.0", features = ["bincode"] }
tracing = { version = "0.1.41", features = ["attributes"] }
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
futures-util = "0.3.31"
clap = { version = "4.5.23", features = ["derive"] }
which = "4"
fuser = { version = "0.15.1", features = ["abi-7-23"] }
log = "0.4.22"
rand_distr = "0.6.0"
env_logger = "0.11.6"
digest = { version = "0.10.7" }
[profile.release]
debug = 1
debug-assertions = true