-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
40 lines (36 loc) · 1004 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
35
36
37
38
39
40
[package]
name = "monotree"
version = "0.3.0"
authors = ["Taeho Francis Lim <[email protected]>", "Jongwhan Lee <[email protected]>"]
edition = "2021"
description = "Rust implementation of an optimized Sparse Merkle Tree"
repository = "https://github.com/thyeem/monotree"
readme = "README.md"
license = "MIT"
documentation = "https://docs.rs/monotree"
homepage = "https://github.com/thyeem/monotree"
keywords = ["sparse", "merkle", "radix", "blockchain", "merkletrie"]
categories = ["algorithms", "data-structures", "cryptography::cryptocurrencies"]
[dependencies]
rand = "0.8.5"
hex = "0.4.3"
num = "0.4.3"
hashbrown = "0.15"
blake2-rfc = "0.2.18"
blake3 = "1.5.5"
digest = "0.10.7"
sha2 = "0.10.8"
sha3 = "0.10.8"
rocksdb = { version = "0.23.0", optional = true }
sled = { version = "0.34.7", optional = true }
scopeguard = "1.2.0"
paste = "1.0.15"
[dev-dependencies]
criterion = "0.5"
[features]
default = []
db_rocksdb = ["rocksdb"]
db_sled = ["sled"]
[[bench]]
name = "benchmark"
harness = false