[package]
name = "sp-io"
version = "23.1.0-dev.5"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
homepage = "https://substrate.io"
repository = "https://github.com/paritytech/substrate/"
description = "I/O for Substrate runtimes"
documentation = "https://docs.rs/sp-io"
readme = "README.md"
build = "build.rs"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
bytes = { version = "1.1.0", default-features = false }
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["bytes"] }
sp-core = { version = "=21.1.0-dev.5", default-features = false, path = "../core" }
sp-keystore = { version = "=0.28.0-dev.5", default-features = false, optional = true, path = "../keystore" }
sp-std = { version = "=8.1.0-dev.5", default-features = false, path = "../std" }
libsecp256k1 = { version = "0.7", optional = true }
sp-state-machine = { version = "=0.29.0-dev.5", default-features = false, optional = true, path = "../state-machine" }
sp-runtime-interface = { version = "=17.1.0-dev.5", default-features = false, path = "../runtime-interface" }
sp-trie = { version = "=22.1.0-dev.5", default-features = false, optional = true, path = "../trie" }
sp-externalities = { version = "=0.20.0-dev.5", default-features = false, path = "../externalities" }
sp-tracing = { version = "=10.1.0-dev.5", default-features = false, path = "../tracing" }
log = { version = "0.4.17", optional = true }
secp256k1 = { version = "0.24.0", features = ["recovery", "global-context"], optional = true }
tracing = { version = "0.1.29", default-features = false }
tracing-core = { version = "0.1.28", default-features = false}
ed25519-dalek = { version = "1.0.1", default-features = false, optional = true }
ed25519 = { version = "1.5.2", optional = true }
[build-dependencies]
rustversion = "1.0.6"
[features]
default = ["std"]
std = [
"bytes/std",
"sp-externalities/std",
"sp-core/std",
"sp-keystore",
"codec/std",
"sp-std/std",
"sp-trie/std",
"sp-state-machine/std",
"libsecp256k1",
"secp256k1",
"sp-runtime-interface/std",
"sp-tracing/std",
"tracing/std",
"tracing-core/std",
"log",
"ed25519-dalek",
"ed25519",
]
with-tracing = [
"sp-tracing/with-tracing"
]
disable_panic_handler = []
disable_oom = []
disable_allocator = []
improved_panic_error_reporting = []