mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 02:57:57 +00:00
6da9f59d72
* primitives/sr-std -> primitives/std * fix * fix conflict * rstd -> sp-std * git mv * fix review * fix merge
21 lines
881 B
TOML
21 lines
881 B
TOML
[package]
|
|
name = "sc-runtime-test"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
sp-std = { path = "../../../primitives/std", default-features = false }
|
|
runtime_io = { package = "sp-io", path = "../../../primitives/sr-io", default-features = false }
|
|
sandbox = { package = "sp-sandbox", path = "../../../primitives/sr-sandbox", default-features = false }
|
|
primitives = { package = "sp-core", path = "../../../primitives/core", default-features = false }
|
|
sp-runtime = { package = "sp-runtime", path = "../../../primitives/runtime", default-features = false }
|
|
|
|
[build-dependencies]
|
|
wasm-builder-runner = { package = "substrate-wasm-builder-runner", path = "../../../client/utils/wasm-builder-runner", version = "1.0.4" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = ["runtime_io/std", "sandbox/std", "sp-std/std"]
|