Fix runtime paths.

This commit is contained in:
Gav
2018-02-08 14:52:35 +01:00
parent aa67fe3781
commit 1a8fe81cfe
3 changed files with 12 additions and 6 deletions
+12 -6
View File
@@ -7,15 +7,21 @@ authors = ["Parity Technologies <admin@parity.io>"]
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 }
substrate-codec = { path = "../../../substrate/codec", default-features = false }
substrate-runtime-std = { path = "../../../substrate/runtime-std", default-features = false }
substrate-runtime-io = { path = "../../../substrate/runtime-io", default-features = false }
substrate-primitives = { path = "../../../substrate/primitives", default-features = false }
polkadot-primitives = { path = "../../primitives", default-features = false }
[features]
default = []
std = ["substrate-codec/std", "substrate-runtime-io/std", "substrate-runtime-std/std", "substrate-primitives/std", "polkadot-primitives/std"]
std = [
"substrate-codec/std",
"substrate-runtime-io/std",
"substrate-runtime-std/std",
"substrate-primitives/std",
"polkadot-primitives/std"
]
[profile.release]
panic = "abort"