Files
pezkuwi-subxt/substrate/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

91 lines
1.8 KiB
TOML

[[bin]]
name = "substrate"
path = "node/src/main.rs"
[package]
name = "substrate"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
build = "build.rs"
[dependencies]
error-chain = "0.12"
node-cli = { path = "node/cli" }
futures = "0.1"
ctrlc = { version = "3.0", features = ["termination"] }
[build-dependencies]
vergen = "2"
[workspace]
members = [
"core/bft",
"core/cli",
"core/client",
"core/client/db",
"core/executor",
"core/finality-grandpa",
"core/keyring",
"core/misbehavior-check",
"core/network",
"core/primitives",
"core/rpc",
"core/rpc-servers",
"core/sr-api",
"core/sr-io",
"core/sr-sandbox",
"core/sr-std",
"core/sr-version",
"core/transaction-graph",
"core/transaction-pool",
"srml/support",
"srml/balances",
"srml/consensus",
"srml/contract",
"srml/council",
"srml/democracy",
"srml/example",
"srml/executive",
"srml/metadata",
"core/sr-primitives",
"srml/session",
"srml/staking",
"srml/system",
"srml/timestamp",
"srml/treasury",
"core/serializer",
"core/service",
"core/service/test",
"core/state-db",
"core/state-machine",
"core/test-runtime",
"core/telemetry",
"core/trie",
"core/keystore",
"node/cli",
"node/consensus",
"node/executor",
"node/network",
"node/primitives",
"node/runtime",
"node/service",
"node/transaction-pool",
"subkey",
]
exclude = [
"node/runtime/wasm",
"core/executor/wasm",
"pwasm-alloc",
"core/test-runtime/wasm",
]
[badges]
travis-ci = { repository = "paritytech/substrate", branch = "master" }
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "paritytech/substrate" }
is-it-maintained-open-issues = { repository = "paritytech/substrate" }
[profile.release]
# Substrate runtime requires unwinding.
panic = "unwind"