forked from jjyr/restricted-sparse-merkle-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 830 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]
authors = ["jjy <[email protected]>"]
description = "(Namada fork) Sparse merkle tree implement in rust"
edition = "2018"
license = "MIT"
name = "nam-sparse-merkle-tree"
repository = "https://github.com/anoma/sparse-merkle-tree"
version = "0.3.2-nam.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
blake2b = ["blake2b-rs"]
default = ["std", "blake2b", "borsh"]
std = []
[dependencies]
blake2b-rs = {version = "0.2.0", optional = true}
borsh = {version = "1.2.0", optional = true, features = ["unstable__schema", "derive"]}
cfg-if = "1.0.0"
ics23 = "0.12.0"
itertools = "0.14.0"
sha2 = "0.10.8"
[dev-dependencies]
criterion = "0.5.1"
hex = "0.4"
proptest = "1.0.0"
rand = "0.8.3"
random-string = "1.0.0"
[[bench]]
harness = false
name = "smt_benchmark"