Files
pezkuwi-subxt/substrate/Cargo.toml
T
Arkadiy Paronyan f2b3bab61e Networking tests and fixes (#61)
* BlockId in client interface

* Sync fixes and tests

* Updated to latest primitives

* Updated dependencies

* Updated for new (old) primitives

* Network as workspace member

* substrate-network

* Removed obsolete file

* begin_transaction on hash
2018-02-08 17:49:55 +01:00

42 lines
828 B
TOML

[[bin]]
name = "polkadot"
path = "polkadot/src/main.rs"
[package]
name = "polkadot"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
error-chain = "0.11"
polkadot-cli = { path = "polkadot/cli" }
[workspace]
members = [
"substrate/client",
"substrate/codec",
"substrate/environmental",
"substrate/executor",
"polkadot/candidate-agreement",
"polkadot/cli",
"polkadot/collator",
"polkadot/executor",
"polkadot/runtime",
"polkadot/primitives",
"polkadot/validator",
"substrate/network",
"substrate/primitives",
"substrate/rpc",
"substrate/rpc-servers",
"substrate/runtime-io",
"substrate/runtime-std",
"substrate/serializer",
"substrate/state-machine",
]
exclude = [
"substrate/executor/wasm",
"polkadot/runtime/wasm",
"substrate/pwasm-alloc",
"substrate/pwasm-libc",
]