-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
34 lines (28 loc) · 819 Bytes
/
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
[package]
name = "smt-rocksdb-store"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocksdb = { package = "ckb-rocksdb", version = "0.19", default-features = false, features = ["snappy", "march-native"] }
sparse-merkle-tree = "0.6.1"
[features]
default = []
trie = ["sparse-merkle-tree/trie"]
[dev-dependencies]
# for benchmarks
blake2b-rs = "0.2"
tempfile = "3.0"
criterion = "0.4"
rand = "0.8"
# for examples
anyhow = "1"
futures = "0.3"
jsonrpsee = { version = "0.15", features = ["full"] }
tokio = { version = "1.16", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = { version = "3.0", features = ["hex"] }
[[bench]]
name = "bench_main"
harness = false