mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 14:01:02 +00:00
24 lines
974 B
TOML
24 lines
974 B
TOML
[package]
|
|
name = "test-parachain-code-upgrader"
|
|
version = "0.7.22"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Test parachain which can upgrade code"
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] }
|
|
codec = { package = "parity-scale-codec", version = "1.1.0", default-features = false, features = ["derive"] }
|
|
tiny-keccak = "1.5.0"
|
|
dlmalloc = { version = "0.1.3", features = [ "global" ] }
|
|
|
|
# We need to make sure the global allocator is disabled until we have support of full substrate externalities
|
|
runtime-io = { package = "sp-io", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] }
|
|
|
|
[build-dependencies]
|
|
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.6" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = ["parachain/std"]
|