Skip to content
This repository was archived by the owner on Nov 6, 2020. It is now read-only.

Commit 9822044

Browse files
chemedebris
authored andcommitted
Update patricia trie to 0.2.2 (#9525)
* Update patricia trie to 0.2.2 crates. Default dependencies on minor version only. * Putting back ethereum tests to the right commit
1 parent 3c3d2ef commit 9822044

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ethcore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ethcore-bloom-journal = { path = "../util/bloom" }
1818
parity-bytes = "0.1"
1919
hashdb = "0.2.1"
2020
memorydb = "0.2.1"
21-
patricia-trie = "0.2.1"
21+
patricia-trie = "0.2"
2222
patricia-trie-ethereum = { path = "../util/patricia-trie-ethereum" }
2323
parity-crypto = "0.1"
2424
error-chain = { version = "0.12", default-features = false }

ethcore/light/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ parity-bytes = "0.1"
1313
ethcore-transaction = { path = "../transaction" }
1414
ethereum-types = "0.4"
1515
memorydb = "0.2.1"
16-
patricia-trie = "0.2.1"
16+
patricia-trie = "0.2"
1717
patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" }
1818
ethcore-network = { path = "../../util/network" }
1919
ethcore-io = { path = "../../util/io" }

ethcore/private-tx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ heapsize = "0.4"
2626
keccak-hash = "0.1.2"
2727
log = "0.4"
2828
parking_lot = "0.6"
29-
patricia-trie = "0.2.1"
29+
patricia-trie = "0.2"
3030
patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" }
3131
rand = "0.3"
3232
rlp = { version = "0.2.4", features = ["ethereum"] }

ethcore/vm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = ["Parity Technologies <[email protected]>"]
77
byteorder = "1.0"
88
parity-bytes = "0.1"
99
ethereum-types = "0.4"
10-
patricia-trie = "0.2.1"
10+
patricia-trie = "0.2"
1111
patricia-trie-ethereum = { path = "../../util/patricia-trie-ethereum" }
1212
log = "0.4"
1313
common-types = { path = "../types" }

rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ keccak-hash = "0.1.2"
5858
parity-reactor = { path = "../util/reactor" }
5959
parity-updater = { path = "../updater" }
6060
parity-version = { path = "../util/version" }
61-
patricia-trie = "0.2.1"
61+
patricia-trie = "0.2"
6262
rlp = { version = "0.2.4", features = ["ethereum"] }
6363
stats = { path = "../util/stats" }
6464
vm = { path = "../ethcore/vm" }

util/patricia-trie-ethereum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = "Merkle-Patricia Trie (Ethereum Style)"
66
license = "GPL-3.0"
77

88
[dependencies]
9-
patricia-trie = "0.2.1"
9+
patricia-trie = "0.2"
1010
keccak-hasher = { version = "0.1.1", path = "../keccak-hasher" }
1111
hashdb = "0.2"
1212
rlp = { version = "0.2.4", features = ["ethereum"] }

0 commit comments

Comments
 (0)