Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test-support/reference-trie/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "reference-trie"
version = "0.18.0"
version = "0.19.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Simple reference trie format"
repository = "https://github.com/paritytech/trie/"
Expand All @@ -11,7 +11,7 @@ edition = "2018"
hash-db = { path = "../../hash-db" , version = "0.15.2"}
hash256-std-hasher = { path = "../../hash256-std-hasher", version = "0.15.2" }
keccak-hasher = { path = "../keccak-hasher", version = "0.15.2" }
trie-db = { path = "../../trie-db", default-features = false, version = "0.18.0" }
trie-db = { path = "../../trie-db", default-features = false, version = "0.19.0" }
trie-root = { path = "../../trie-root", default-features = false, version = "0.15.2" }
parity-scale-codec = { version = "1.0.3", features = ["derive"] }

Expand Down
2 changes: 1 addition & 1 deletion test-support/trie-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ trie-standardmap = { path = "../trie-standardmap", version = "0.15.2" }
hash-db = { path = "../../hash-db" , version = "0.15.2"}
memory-db = { path = "../../memory-db", version = "0.18.0" }
trie-root = { path = "../../trie-root", version = "0.15.2" }
trie-db = { path = "../../trie-db", version = "0.18.0" }
trie-db = { path = "../../trie-db", version = "0.19.0" }
criterion = "0.2.8"
parity-scale-codec = { version = "1.0.3" }
4 changes: 2 additions & 2 deletions trie-db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trie-db"
version = "0.18.1"
version = "0.19.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Merkle-Patricia Trie generic over key hasher and node encoding"
repository = "https://github.com/paritytech/trie"
Expand All @@ -20,7 +20,7 @@ trie-root = { path = "../trie-root", version = "0.15.2"}
trie-standardmap = { path = "../test-support/trie-standardmap", version = "0.15.2" }
keccak-hasher = { path = "../test-support/keccak-hasher", version = "0.15.2" }
# DISABLE the following line when publishing until cyclic dependencies are resolved https://github.com/rust-lang/cargo/issues/4242
reference-trie = { path = "../test-support/reference-trie", version = "0.18.0" }
reference-trie = { path = "../test-support/reference-trie", version = "0.19.0" }
hex-literal = "0.1"
criterion = "0.2.8"
parity-codec = "3.0"
Expand Down
2 changes: 1 addition & 1 deletion trie-root/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ hex-literal = "0.1"
keccak-hasher = { path = "../test-support/keccak-hasher", version = "0.15.2" }
trie-standardmap = { path = "../test-support/trie-standardmap", version = "0.15.2" }
# DISABLE the following line when publishing until cyclic dependencies are resolved https://github.com/rust-lang/cargo/issues/4242
reference-trie = { path = "../test-support/reference-trie", version = "0.18.0" }
reference-trie = { path = "../test-support/reference-trie", version = "0.19.0" }

[features]
default = ["std"]
Expand Down