extract out runtime-codec to a separate crate

This commit is contained in:
Robert Habermeier
2018-01-30 18:51:12 +01:00
parent 8e554129ec
commit a68b187f4d
27 changed files with 82 additions and 40 deletions
+6 -5
View File
@@ -3,11 +3,12 @@ name = "native-runtime"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
[dependencies]
polkadot-runtime-codec = { path = "../runtime-codec", version = "0.1" }
runtime-std = { path = "./std", version = "0.1" }
rustc-hex = "1.0"
[features]
default = ["with-std"]
with-std = []
without-std = []
[dependencies]
runtime-std = { path = "./std", version = "0.1" }
rustc-hex = "1.0"
without-std = ["polkadot-runtime-codec/no-std"]