mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +00:00
79feb23a22
* refactor sr_primitives. * Fix try build error. * Line-width * Ui test. * Final fixes. * Fix build again. * bring back ui test. * Fix unsigned import. * Another ui fix. * Also refactor substrate-primitives * Fix benchmarks. * Fix doc test. * fix doc tests
21 lines
724 B
TOML
21 lines
724 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 }
|
|
primitives = { package = "substrate-primitives", path = "../../primitives", default-features = false }
|
|
|
|
[build-dependencies]
|
|
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.2", path = "../../utils/wasm-builder-runner" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = []
|
|
no_std = []
|