mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 20:27:58 +00:00
da8b91ae7b
* switch to simple codec, trie broken for now * Actualy use trie_root_noext * align some hash, failing test on EMCH comment * Fix trie code over layout instead of hash, revert legacy code for legacy mainnet ?? * stub behind LayOut * fix no_std * temp solution for legacy trie behind feature legacy-key in various crate * use remote project * rc client db need prefix * update trie deps * bum spec runtime version * Removing legacy as default. * Switch mode to non legacy. * bump runtime version * Remove legacy trie compatibility features. * fix warning * bump version * change hash on new test. * Move dependency (#11 trie PR) patched to a parity repo. Bench reverted to correct hasher. Some renaming and doc improvments. * ChildBitmap renaming to BitMap. * Renaming of LayOut to Layout. * formatting. * Removing abreviation such as _ix nb_ or bm. * Update deps and apply renaming 'Buff' -> 'Buffer'. * Align to latest trie crates naming changes. * Update trie dependency. * Update trie dependency. * change block_import test hash * update trie deps (trie use new scale codec but it does not seems to be an issue). * update to use latest trie version (no mgmt of multiple radix). * tabify * Restoring test to 10 000. * Use published crate, trie bench is currently down until publishing (require another pr to update version). * Update trie-bench.
38 lines
1.6 KiB
TOML
38 lines
1.6 KiB
TOML
[package]
|
|
name = "node-executor"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Substrate node implementation in Rust."
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
trie-root = "0.15.0"
|
|
parity-codec = "4.1.1"
|
|
runtime_io = { package = "sr-io", path = "../../core/sr-io" }
|
|
state_machine = { package = "substrate-state-machine", path = "../../core/state-machine" }
|
|
substrate-executor = { path = "../../core/executor" }
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives" }
|
|
trie = { package = "substrate-trie", path = "../../core/trie" }
|
|
node-primitives = { path = "../primitives" }
|
|
node-runtime = { path = "../runtime" }
|
|
|
|
[dev-dependencies]
|
|
test-client = { package = "substrate-test-client", path = "../../core/test-client" }
|
|
keyring = { package = "substrate-keyring", path = "../../core/keyring" }
|
|
sr-primitives = { path = "../../core/sr-primitives" }
|
|
runtime_support = { package = "srml-support", path = "../../srml/support" }
|
|
balances = { package = "srml-balances", path = "../../srml/balances" }
|
|
session = { package = "srml-session", path = "../../srml/session" }
|
|
staking = { package = "srml-staking", path = "../../srml/staking" }
|
|
system = { package = "srml-system", path = "../../srml/system" }
|
|
timestamp = { package = "srml-timestamp", path = "../../srml/timestamp" }
|
|
treasury = { package = "srml-treasury", path = "../../srml/treasury" }
|
|
contracts = { package = "srml-contracts", path = "../../srml/contracts" }
|
|
grandpa = { package = "srml-grandpa", path = "../../srml/grandpa" }
|
|
indices = { package = "srml-indices", path = "../../srml/indices" }
|
|
wabt = "~0.7.4"
|
|
|
|
[features]
|
|
benchmarks = []
|
|
stress-test = []
|