forked from jjyr/restricted-sparse-merkle-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 loc) · 803 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
[package]
name = "restricted-sparse-merkle-tree"
version = "0.4.0-rc2"
authors = ["jjy <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/jjyr/restricted-sparse-merkle-tree"
description = "Sparse merkle tree (restricted version) implement in rust"
exclude = ["/fixtures", "/proptest-regressions"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["std", "blake2b"]
std = []
blake2b = ["blake2b-rs"]
[dependencies]
cfg-if = "0.1"
blake2b-rs = { version = "0.1", optional = true }
[dev-dependencies]
proptest = "0.9"
criterion = "0.2"
rand = "0.7"
hex = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
[[bench]]
name = "smt_benchmark"
harness = false