-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
23 lines (21 loc) · 1.05 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
[package]
name = "merkle-trie"
version = "0.4.1"
authors = ["CodeChain Team <[email protected]>"]
repository = "http://github.com/CodeChain-io/rust-merkle-trie"
license = "AGPL-3.0"
edition = "2018"
[dependencies]
ccrypto = { package = "codechain-crypto", git = "https://github.com/CodeChain-io/rust-codechain-crypto.git", version = "0.3.0", tag = "v0.3.0" }
cdb = { package = "codechain-db", git = "https://github.com/CodeChain-io/rust-codechain-db.git", version = "0.2.0", tag = "v0.2.0" }
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.5.0", tag = "v0.5.1" }
rand = "0.6.1"
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.5.0", tag = "v0.5.0" }
rlp_derive = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.5.0", tag = "v0.5.0" }
snap = "0.2"
lru-cache = "0.1.2"
[dev-dependencies]
kvdb = "0.1"
kvdb-rocksdb = "0.1"
standardmap = { package = "trie-standardmap", git = "https://github.com/CodeChain-io/trie-standardmap.git", version = "0.4.0", tag = "v0.4.0" }
tempfile = "3.1.0"