Fix warning and directory restructure.

This commit is contained in:
Gav
2018-02-08 14:29:30 +01:00
commit aa67fe3781
67 changed files with 11560 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
[package]
name = "polkadot-runtime"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
[lib]
crate-type = ["cdylib"]
[dependencies]
substrate-codec = { path = "../../codec", default-features = false }
substrate-runtime-std = { path = "../../runtime-std", default-features = false }
substrate-runtime-io = { path = "../../runtime-io", default-features = false }
substrate-primitives = { path = "../../primitives", default-features = false }
polkadot-primitives = { path = "../../polkadot-primitives", default-features = false }
[features]
default = []
std = ["substrate-codec/std", "substrate-runtime-io/std", "substrate-runtime-std/std", "substrate-primitives/std", "polkadot-primitives/std"]
[profile.release]
panic = "abort"
[workspace]
members = []