mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 07:27:55 +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.
59 lines
2.3 KiB
TOML
59 lines
2.3 KiB
TOML
[package]
|
|
name = "substrate-client"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
derive_more = { version = "0.14.0", optional = true }
|
|
fnv = { version = "1.0", optional = true }
|
|
log = { version = "0.4", optional = true }
|
|
parking_lot = { version = "0.8.0", optional = true }
|
|
hex = { package = "hex-literal", version = "0.2", optional = true }
|
|
futures-preview = { version = "0.3.0-alpha.17", optional = true }
|
|
consensus = { package = "substrate-consensus-common", path = "../consensus/common", optional = true }
|
|
executor = { package = "substrate-executor", path = "../executor", optional = true }
|
|
state-machine = { package = "substrate-state-machine", path = "../state-machine", optional = true }
|
|
keyring = { package = "substrate-keyring", path = "../keyring", optional = true }
|
|
trie = { package = "substrate-trie", path = "../trie", optional = true }
|
|
substrate-telemetry = { path = "../telemetry", optional = true }
|
|
hash-db = { version = "0.15.0", default-features = false }
|
|
kvdb = { git = "https://github.com/paritytech/parity-common", optional = true, rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" }
|
|
parity-codec = { version = "4.1.1", default-features = false, features = ["derive"] }
|
|
primitives = { package = "substrate-primitives", path = "../primitives", default-features = false }
|
|
sr-primitives = { path = "../sr-primitives", default-features = false }
|
|
runtime-version = { package = "sr-version", path = "../sr-version", default-features = false }
|
|
rstd = { package = "sr-std", path = "../sr-std", default-features = false }
|
|
inherents = { package = "substrate-inherents", path = "../inherents", default-features = false }
|
|
sr-api-macros = { path = "../sr-api-macros" }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.6"
|
|
test-client = { package = "substrate-test-runtime-client", path = "../test-runtime/client" }
|
|
kvdb-memorydb = { git = "https://github.com/paritytech/parity-common", rev="b0317f649ab2c665b7987b8475878fc4d2e1f81d" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"rstd/std",
|
|
"parity-codec/std",
|
|
"primitives/std",
|
|
"inherents/std",
|
|
"sr-primitives/std",
|
|
"runtime-version/std",
|
|
"hash-db/std",
|
|
"consensus",
|
|
"parking_lot",
|
|
"derive_more",
|
|
"fnv",
|
|
"log",
|
|
"hex",
|
|
"futures-preview",
|
|
"executor",
|
|
"state-machine",
|
|
"keyring",
|
|
"trie",
|
|
"substrate-telemetry",
|
|
"kvdb"
|
|
]
|