-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
42 lines (39 loc) · 1.54 KB
/
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
41
42
[package]
name = "beefy-light-client"
version = "0.1.0"
authors = ["Julian Sun <[email protected]>"]
edition = "2021"
[dependencies]
borsh = { version = "0.10.0", default-features = false }
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
binary-merkle-tree = { git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.40", default-features = false }
blake2-rfc = { version = "0.2.18", default-features = false }
hex = { version = "0.4", default-features = false, features = ["alloc"] }
libsecp256k1 = { version = "0.7", default-features = false, features = ["static-context"] }
displaydoc = { version = "0.2", default-features = false }
mmr-lib = { package = "ckb-merkle-mountain-range", version = "0.5.2", default-features = false }
hash256-std-hasher = { version = "0.15.2", default-features = false }
hash-db = { version = "0.16.0", default-features = false }
sha3 = { version = "0.10.0", default-features = false } # from sp-core-hashing
[dev-dependencies]
hex-literal = "0.3.1"
rand = { version = "0.8" }
secp256k1-test = { package = "secp256k1", version = "0.26.0", features = ["rand-std", "recovery"] }
array-bytes = "4.1"
hex = "0.4.3"
[features]
default = ["std"]
std = [
"binary-merkle-tree/std",
"blake2-rfc/std",
"codec/std",
"hex/std",
"libsecp256k1/std",
"mmr-lib/std",
"borsh/std",
"displaydoc/std",
"hash256-std-hasher/std",
"hash-db/std",
"sha3/std",
]