[package] name = "substrate-runtime-io" version = "0.1.0" authors = ["Parity Technologies "] build = "build.rs" [build-dependencies] rustc_version = "0.2" [dependencies] substrate-runtime-std = { path = "../runtime-std", default_features = false } environmental = { path = "../environmental", optional = true } substrate-state-machine = { path = "../state-machine", optional = true } substrate-primitives = { path = "../primitives", default_features = false } substrate-codec = { path = "../codec", default_features = false } triehash = { version = "0.1", optional = true } ed25519 = { path = "../ed25519", optional = true } [features] default = ["std"] std = [ "environmental", "substrate-state-machine", "triehash", "substrate-primitives/std", "substrate-codec/std", "substrate-runtime-std/std", "ed25519", ] nightly = [] strict = []