Files
pezkuwi-subxt/substrate/core/trie/Cargo.toml
T
cheme 669e79181e no_std support for substrate trie (#2146)
* no_std trie compile in test_runtime (require to set nightly feature due
to the way hashbrown currently works).

* No nightly with hashmap_core.

* using crate elastic-array

* switch to publish trie crates

* fix default array decl

* bump impl_version for ci

* set all semver when possible wasm, and remove redundant code.

* Actually test use_trie function

* impl version +1

* Bump impl version
2019-04-02 12:49:04 +02:00

40 lines
1.1 KiB
TOML

[package]
name = "substrate-trie"
version = "1.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Patricia trie stuff using a parity-codec node format"
repository = "https://github.com/paritytech/parity-common"
license = "GPL-3.0"
edition = "2018"
[[bench]]
name = "bench"
harness = false
[dependencies]
codec = { package = "parity-codec", version = "3.2", default-features = false }
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
hash-db = { version = "0.12.2", default-features = false }
trie-db = { version = "0.12.2", default-features = false }
trie-root = { version = "0.12.2", default-features = false }
memory-db = { version = "0.12.2", default-features = false }
[dev-dependencies]
substrate-primitives = { path = "../primitives" }
trie-bench = { version = "0.12" }
trie-standardmap = { version = "0.12" }
keccak-hasher = { version = "0.12" }
criterion = "0.2"
hex-literal = "0.1.0"
[features]
default = ["std"]
std = [
"rstd/std",
"codec/std",
"hash-db/std",
"memory-db/std",
"trie-db/std",
"trie-root/std"
]