Skip to content
Snippets Groups Projects
Commit 9d27cb9b authored by Gav's avatar Gav
Browse files

Fix runtime paths.

parent 7d48c78c
Branches
No related merge requests found
......@@ -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"
......
No preview for this file type
No preview for this file type
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment