Fix warning and directory restructure.

This commit is contained in:
Gav
2018-02-08 14:29:30 +01:00
parent ac5a750f45
commit 4582038b3d
145 changed files with 129 additions and 123 deletions
+29 -25
View File
@@ -1,3 +1,7 @@
[[bin]]
name = "polkadot"
path = "polkadot/src/main.rs"
[package]
name = "polkadot"
version = "0.1.0"
@@ -5,34 +9,34 @@ authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
error-chain = "0.11"
polkadot-cli = { path = "polkadot-cli", version = "0.1" }
polkadot-network = { path = "network" }
polkadot-cli = { path = "polkadot/cli" }
polkadot-network = { path = "polkadot/network" }
[workspace]
members = [
"client",
"codec",
"environmental",
"executor",
"network",
"polkadot-candidate-agreement",
"polkadot-cli",
"polkadot-collator",
"polkadot-executor",
"polkadot-runtime",
"polkadot-primitives",
"polkadot-validator",
"primitives",
"rpc",
"rpc-servers",
"runtime-io",
"runtime-std",
"serializer",
"state-machine",
"substrate/client",
"substrate/codec",
"substrate/environmental",
"substrate/executor",
"polkadot/network",
"polkadot/candidate-agreement",
"polkadot/cli",
"polkadot/collator",
"polkadot/executor",
"polkadot/runtime",
"polkadot/primitives",
"polkadot/validator",
"substrate/primitives",
"substrate/rpc",
"substrate/rpc-servers",
"substrate/runtime-io",
"substrate/runtime-std",
"substrate/serializer",
"substrate/state-machine",
]
exclude = [
"executor/wasm",
"polkadot-runtime/wasm",
"pwasm-alloc",
"pwasm-libc",
"substrate/executor/wasm",
"polkadot/runtime/wasm",
"substrate/pwasm-alloc",
"substrate/pwasm-libc",
]