mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 23:57:56 +00:00
7a2165cff2
* Don't clutter the output that much * Support building from `crates` or from `path` * Upgrade the versions * Update `Cargo.lock`
21 lines
699 B
TOML
21 lines
699 B
TOML
[package]
|
|
name = "substrate-runtime-test"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
rstd = { package = "sr-std", path = "../../sr-std", default-features = false }
|
|
runtime_io = { package = "sr-io", path = "../../sr-io", default-features = false }
|
|
sandbox = { package = "sr-sandbox", path = "../../sr-sandbox", default-features = false }
|
|
substrate-primitives = { path = "../../primitives", default-features = false }
|
|
|
|
[build-dependencies]
|
|
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.1", path = "../../utils/wasm-builder-runner" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = []
|
|
no_std = []
|