mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 02:57:57 +00:00
df133d6be3
* sr-arithmetic -> arithmetic * sr-sandbox -> sandbox * primitives/sr-staking-primitives -> primitives/staking * primitives/sr-version -> primitives/version * primitives/block-builder/runtime-api -> primitives/block-builder
21 lines
846 B
TOML
21 lines
846 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 }
|
|
sp-io = { path = "../../../primitives/io", default-features = false }
|
|
sandbox = { package = "sp-sandbox", path = "../../../primitives/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 = ["sp-io/std", "sandbox/std", "sp-std/std"]
|