mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 00:37:57 +00:00
24 lines
912 B
TOML
24 lines
912 B
TOML
[package]
|
|
name = "polkadot-runtime-std"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
build = "build.rs"
|
|
|
|
[build-dependencies]
|
|
rustc_version = "0.2"
|
|
|
|
[dependencies]
|
|
pwasm-alloc = { path = "../wasm-runtime/pwasm-alloc", version = "0.1" }
|
|
pwasm-libc = { path = "../wasm-runtime/pwasm-libc", version = "0.1" }
|
|
environmental = { path = "../environmental", version = "0.1", optional = true }
|
|
polkadot-state-machine = { path = "../state-machine", version = "0.1", optional = true }
|
|
polkadot-primitives = { path = "../primitives", version = "0.1", default_features = false }
|
|
polkadot-runtime-codec = { path = "../runtime-codec", version = "0.1", default_features = false }
|
|
triehash = { version = "0.1", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["environmental", "polkadot-state-machine", "triehash", "polkadot-primitives/std", "polkadot-runtime-codec/std"]
|
|
nightly = []
|
|
strict = []
|