mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 11:27:58 +00:00
2c65ad6c7b
* Add missing `As` imports. * Adds new API traits that will be used by the client and runtime * Switch consensus to new API's * Switches transaction-pool to new API's * Move runtime api stuff into its own crate * Adds `impl_apis!` macro for implementing the new API traits * Make `metadata` return directly a blob * Runtime replace `impl_stubs!` with `impl_apis!` * Switches to none feature based approach for declaring the different API traits * Fixes compilation error * Fixes errors * Make the `decl_apis!` trait usable from the outside * Make the `test-client` use the new API traits * Remove last `impl_stubs!` bits and move some of them into wasm executor for tests * A little bit more documentation
31 lines
836 B
TOML
31 lines
836 B
TOML
[package]
|
|
name = "substrate-client"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
error-chain = "0.12"
|
|
fnv = "1.0"
|
|
log = "0.4"
|
|
parking_lot = "0.4"
|
|
hex-literal = "0.1"
|
|
futures = "0.1.17"
|
|
slog = "^2"
|
|
heapsize = "0.4"
|
|
substrate-bft = { path = "../bft" }
|
|
parity-codec = "2.0"
|
|
substrate-executor = { path = "../executor" }
|
|
substrate-primitives = { path = "../primitives" }
|
|
sr-primitives = { path = "../sr-primitives" }
|
|
sr-api = { path = "../sr-api" }
|
|
substrate-state-machine = { path = "../state-machine" }
|
|
substrate-keyring = { path = "../keyring" }
|
|
substrate-trie = { path = "../trie" }
|
|
substrate-telemetry = { path = "../telemetry" }
|
|
hash-db = { git = "https://github.com/paritytech/trie" }
|
|
kvdb = "0.1"
|
|
|
|
[dev-dependencies]
|
|
substrate-test-client = { path = "../test-client" }
|
|
kvdb-memorydb = "0.1"
|