Skip to content

Commit

Permalink
Replace with fork of trie
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauthamastro committed Mar 13, 2023
1 parent f5c2cec commit a894cfc
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 27 deletions.
79 changes: 56 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions primitives/trie/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ harness = false
ahash = { version = "0.8.2", optional = true }
codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false }
hashbrown = { version = "0.12.3", optional = true }
hash-db = { version = "0.15.2", default-features = false }
lazy_static = { version = "1.4.0", optional = true }
memory-db = { version = "0.31.0", default-features = false }
nohash-hasher = { version = "0.2.0", optional = true }
parking_lot = { version = "0.12.1", optional = true }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.30", optional = true }
tracing = { version = "0.1.29", optional = true }
trie-db = { version = "0.26.0", default-features = false }
trie-root = { version = "0.17.0", default-features = false }
hash-db = { git = "https://github.com/Polkadex-Substrate/trie.git", branch ="master", default-features = false }
memory-db = { git = "https://github.com/Polkadex-Substrate/trie.git", branch ="master" , default-features = false }
trie-db = { git = "https://github.com/Polkadex-Substrate/trie.git", branch ="master", default-features = false }
trie-root = { git = "https://github.com/Polkadex-Substrate/trie.git", branch ="master" , default-features = false }
sp-core = { version = "7.0.0", default-features = false, path = "../core" }
sp-std = { version = "5.0.0", default-features = false, path = "../std" }
schnellru = { version = "0.2.1", optional = true }
Expand Down

0 comments on commit a894cfc

Please sign in to comment.