-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 1.38 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
[package]
name = "rockbound"
version = "0.1.0"
edition = "2021"
authors = ["Sovereign Labs <info@sovereign.xyz>"]
homepage = "https://github.com/sovereign-labs/rockbound"
repository = "https://github.com/sovereign-labs/rockbound"
description = "A low level interface transforming RocksDB into a type-oriented data store"
# Some of the code is derived from Aptos <https://github.com/aptos-labs/aptos-core>
# which is licensed under Apache-2.0.
license = "Apache-2.0"
readme = "README.md"
[dependencies]
anyhow = "1"
prometheus = { version = "0.14", default-features = false }
proptest = { version = "1", default-features = false, features = ["std"], optional = true }
proptest-derive = { version = "0.5", default-features = false, optional = true }
rocksdb = { version = "0.24", features = ["lz4"], default-features = false }
thiserror = "2"
tracing = { version = "0.1", default-features = false, features = ["attributes"] }
tokio = { version = "1", default-features = false, features = ["rt-multi-thread"] }
parking_lot = "0.12.4"
quick_cache = "0.6.15"
[dev-dependencies]
rockbound = { path = ".", features = ["test-utils"] }
tempfile = "3"
tokio = { version = "1", default-features = false, features = ["macros"] }
[features]
default = []
arbitrary = ["dep:proptest", "dep:proptest-derive", "rockbound/arbitrary"]
bindgen-runtime = ["rocksdb/bindgen-runtime"]
test-utils = ["arbitrary", "quick_cache/stats"]