-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This version * upgrades codechain-crypto and codechain-db. * implements Merkle Proof.
- Loading branch information
Seulgi Kim
committed
Feb 7, 2020
1 parent
e41cc11
commit 36e1277
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "merkle-trie" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
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.1" } | ||
cdb = { package = "codechain-db", git = "https://github.com/CodeChain-io/rust-codechain-db.git", version = "0.1" } | ||
ccrypto = { package = "codechain-crypto", git = "https://github.com/CodeChain-io/rust-codechain-crypto.git", version = "0.2" } | ||
cdb = { package = "codechain-db", git = "https://github.com/CodeChain-io/rust-codechain-db.git", version = "0.2" } | ||
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" } | ||
rand = "0.6.1" | ||
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.4" } | ||
|
@@ -19,5 +19,5 @@ 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.2" } | ||
standardmap = { package = "trie-standardmap", git = "https://github.com/CodeChain-io/trie-standardmap.git", version = "0.3" } | ||
tempfile = "3.1.0" |