mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
c5a709a882
* client/rpc/api -> client/rpc-api * client/util/wasm-builder-runner -> utils/wasm-builder-runner * client/grafana-data-source -> utils/grafana-data-source * test/utils -> test-utils * fix moved path * Update Cargo.lock * Update Cargo.lock
21 lines
839 B
TOML
21 lines
839 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 = "../../../utils/wasm-builder-runner", version = "1.0.4" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = ["sp-io/std", "sandbox/std", "sp-std/std"]
|