-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
38 lines (34 loc) · 902 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
[package]
name = "monotree"
version = "0.1.5"
authors = ["Francis Lim <[email protected]>", "Jongwhan Lee <[email protected]>"]
edition = "2018"
description = "Rust implementation of an optimized Sparse Merkle Tree"
repository = "https://github.com/thyeem/monotree"
readme = "README.md"
license = "MIT"
keywords = ["sparse", "merkle", "radix", "blockchain", "merkletrie"]
categories = ["algorithms", "data-structures", "cryptography::cryptocurrencies"]
[dependencies]
rand = "0.7.3"
hex = "0.4.1"
num = "0.2.1"
hashbrown = "0.7"
blake2-rfc = "0.2.18"
blake3 = "0.2.2"
digest = "0.8.1"
sha2 = "0.8.1"
sha3 = "0.8.2"
rocksdb = { version = "0.13.0", optional = true }
sled = { version = "0.31.0", optional = true }
scopeguard = "1.1.0"
paste = "0.1.7"
[dev-dependencies]
criterion = "0.3"
[features]
default = []
db_rocksdb = ["rocksdb"]
db_sled = ["sled"]
[[bench]]
name = "benchmark"
harness = false