Files
pezkuwi-subxt/substrate/core/test-runtime/wasm/Cargo.toml
T
Bastian Köcher 2c65ad6c7b Refactor the runtime API to use traits. (#878)
* 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
2018-10-09 10:58:29 +02:00

43 lines
1.1 KiB
TOML

[package]
name = "substrate-test-runtime"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
log = { version = "0.4", optional = true }
hex-literal = { version = "0.1.0", optional = true }
parity-codec = { version = "2.0", default-features = false }
parity-codec-derive = { version = "2.0", default-features = false }
substrate-primitives = { path = "../../primitives", default-features = false }
sr-api = { path = "../../sr-api", default-features = false }
sr-std = { path = "../../sr-std", default-features = false }
sr-io = { path = "../../sr-io", default-features = false }
sr-version = { path = "../../sr-version", default-features = false }
sr-primitives = { path = "../../sr-primitives", default-features = false }
srml-support = { path = "../../../srml/support", default-features = false }
[features]
default = []
std = [
"log",
"hex-literal",
"parity-codec/std",
"sr-api/std",
"sr-std/std",
"sr-io/std",
"srml-support/std",
"sr-version/std",
"substrate-primitives/std",
"sr-primitives/std"
]
[lib]
crate-type = ["cdylib"]
[profile.release]
panic = "abort"
lto = true
[workspace]
members = []