Skip to content

Commit

Permalink
Bump up the version to 0.4.0
Browse files Browse the repository at this point in the history
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.
8 changes: 4 additions & 4 deletions Cargo.toml
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" }
Expand All @@ -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"

0 comments on commit 36e1277

Please sign in to comment.