mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 03:47:59 +00:00
7fb8b2fb47
* Update substrate: async API fix * Fix to update polkadot and substrate * Update substrate & polkadot to use cumulus-branch * Apply suggestions from code review Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
21 lines
581 B
TOML
21 lines
581 B
TOML
[package]
|
|
name = "cumulus-test-runtime"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
runtime = { package = "cumulus-runtime", path = "../../runtime", default-features = false }
|
|
substrate-test-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cumulus-branch" }
|
|
|
|
[build-dependencies]
|
|
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = " 1.0.2" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"runtime/std",
|
|
"substrate-test-runtime/std",
|
|
]
|