mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 04:28:01 +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.
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "sr-io"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
edition = "2018"
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.2"
|
|
|
|
[dependencies]
|
|
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
|
|
primitives = { package = "substrate-primitives", path = "../primitives", default-features = false }
|
|
codec = { package = "parity-codec", version = "4.1.1", default-features = false }
|
|
hash-db = { version = "0.15.0", default-features = false }
|
|
libsecp256k1 = { version = "0.2.1", optional = true }
|
|
tiny-keccak = { version = "1.4.2", optional = true }
|
|
environmental = { version = "1.0.1", optional = true }
|
|
substrate-state-machine = { path = "../state-machine", optional = true }
|
|
trie = { package = "substrate-trie", path = "../trie", optional = true }
|
|
|
|
[dev-dependencies]
|
|
substrate-offchain = { path = "../offchain" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"primitives/std",
|
|
"codec/std",
|
|
"rstd/std",
|
|
"hash-db/std",
|
|
"trie",
|
|
"environmental",
|
|
"substrate-state-machine",
|
|
"libsecp256k1",
|
|
"tiny-keccak"
|
|
]
|
|
nightly = []
|
|
strict = []
|
|
wasm-nice-panic-message = []
|
|
no_panic_handler = []
|
|
no_oom = []
|