forked from nervosnetwork/merkle-mountain-range
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
38 lines (32 loc) · 809 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 = "polkadot-ckb-merkle-mountain-range"
version = "0.8.1"
authors = [
"Nervos Core Dev <dev@nervos.org>",
"Parity Technologies <admin@parity.io>",
"Robert Hambrock <roberthambrock@gmail.com>"
]
edition = "2018"
license = "MIT"
description = "A generalized merkle mountain range implementation (polkadot fork)"
repository = "https://github.com/paritytech/merkle-mountain-range"
[features]
default = ["std"]
std = []
[dependencies]
cfg-if = "1.0"
itertools = { version = "0.10.5", default-features = false, features = ["use_alloc"] }
[dev-dependencies]
faster-hex = "0.8.0"
criterion = "0.5.1"
rand = "0.8.5"
proptest = "1.2.0"
lazy_static = "1.4.0"
bytes = "1.4.0"
blake2b-rs = "0.2.0"
[[bench]]
name = "mmr_benchmark"
harness = false
[[bench]]
name = "helper_benchmark"
harness = false