Skip to content
Merged
Changes from 4 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
12 changes: 9 additions & 3 deletions triehash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "triehash"
version = "0.8.1"
version = "0.8.2"
authors = ["Parity Technologies <admin@parity.io>"]
description = "In-memory patricia trie operations"
repository = "https://github.com/paritytech/parity-common"
license = "GPL-3.0"
edition = "2018"

[dependencies]
hash-db = "0.15.2"
rlp = { version = "0.4", path = "../rlp" }
hash-db = { version = "0.15.2", default-features = false }
rlp = { version = "0.4", path = "../rlp", default-features = false }

[dev-dependencies]
criterion = "0.3.0"
Expand All @@ -19,6 +19,12 @@ tiny-keccak = { version = "2.0", features = ["keccak"] }
trie-standardmap = "0.15.2"
hex-literal = "0.2.1"

[features]
std = [
"hash-db/std",
"rlp/std",
]

[[bench]]
name = "triehash"
path = "benches/triehash.rs"
Expand Down