-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
47 lines (40 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
47
[package]
name = "marble"
authors = ["Tyler Neely <[email protected]>"]
version = "15.0.7"
edition = "2021"
description = "garbage-collecting on-disk object store"
license = "MIT/Apache-2.0"
repository = "https://github.com/komora-io/marble"
documentation = "https://docs.rs/marble/"
[profile.release]
debug = true
panic = "abort"
[profile.dev]
debug = true
panic = "abort"
[features]
runtime_validation = ["rand"]
[dev-dependencies]
env_logger = "0.9.0"
rand = "0.8.5"
criterion = {version = "0.5.1", features = ["html_reports"]}
serde = { version = "1.0.144", features = ["derive"] }
bincode = { version = "1.3.3" }
[dependencies]
crc32fast = "1.3.2"
log = "0.4.17"
fs2 = "0.4.3"
pagetable = { version = "0.4" }
fault-injection = "1.0.7"
rand = { version = "0.8.5", optional = true }
zstd-safe = { version="5.0.2", features=["std", "experimental"] }
concurrent-map = { version ="5.0" }
[[bench]]
name = "marble_bench"
path = "benches/marble_bench.rs"
harness = false
[[test]]
name = "crash_atomicity"
path = "tests/crash_atomicity.rs"
harness = false