mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
1ba7e35c18
* Temporarily pin trie to #2 * Use generic and delay trait object casting Rust does not support super-trait upcasting * Add PlainDB impl for Ephemeral * Add PlainDB trait alias for completeness * Use PlainDB for test TrieBackendStorage fetch We always check overlay first for a storage fetch, which already checked null data. Using PlainDB here makes it work nicer with other PlainDB overlays. * Update trie reference * Use HashDBRef in places when approriate * Use PlainDBRef in places when approriate * Update trie crate reference * Remove unused HashDB::keys * Patch dependencies * Fix cargolock * Update cargo lock again
36 lines
886 B
TOML
36 lines
886 B
TOML
[package]
|
|
name = "node-runtime-wasm"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "node_runtime"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
node-runtime = { path = "..", default-features = false }
|
|
|
|
[features]
|
|
default = []
|
|
std = [
|
|
"node-runtime/std",
|
|
]
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = true
|
|
|
|
[workspace]
|
|
members = []
|
|
|
|
[patch.crates-io]
|
|
hash-db = { git = "https://github.com/paritytech/trie" }
|
|
hash256-std-hasher = { git = "https://github.com/paritytech/trie" }
|
|
keccak-hasher = { git = "https://github.com/paritytech/trie" }
|
|
memory-db = { git = "https://github.com/paritytech/trie" }
|
|
trie-bench = { git = "https://github.com/paritytech/trie" }
|
|
trie-db = { git = "https://github.com/paritytech/trie" }
|
|
trie-root = { git = "https://github.com/paritytech/trie" }
|
|
trie-standardmap = { git = "https://github.com/paritytech/trie" }
|