-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (36 loc) · 1.14 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
[package]
name = "rust-storage-bench"
version = "0.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "worker"
path = "src/worker/main.rs"
[features]
default = ["heed", "rocksdb"]
rocksdb = ["dep:rocksdb"]
heed = ["dep:heed"]
# [target.'cfg(not(target_env = "msvc"))'.dependencies]
# jemallocator = "0.3.2"
[dependencies]
clap = { version = "4.4.10", features = ["derive"] }
# bloodstone = { package = "sled", version = "1.0.0-alpha.121" }
sled = { version = "0.34.7", features = ["compression"] }
fjall = { version = "1.4.0" }
nanoid = "0.4.0"
rand = "0.8.5"
sysinfo = { version = "0.30.1", features = ["serde"] }
serde = { version = "1.0.193", features = ["derive", "rc"] }
serde_json = "1.0.108"
fs_extra = "1.3.0"
env_logger = "0.10.1"
log = { version = "0.4.20", features = ["release_max_level_trace"] }
persy = { version = "1.5.0", features = ["background_ops"] }
jammdb = "0.11.0"
zipf = "7.0.1"
redb = "2.1.1"
nebari = "0.5.5"
heed = { version = "0.20.0", optional = true }
rocksdb = { version = "0.22.0", optional = true, default-features = false, features = [
"lz4",
] }