mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 04:41:03 +00:00
97f9b840e4
* kusama: bump spec_version to 9250 * polkadot: bump spec_version to 9250 * rococo: bump spec_version to 9250 * westend: bump spec_version to 9250 * bump version to 0.9.25 * bump transaction version (polkadot & kusama) (#5690) * kusama: bump transaction_version to 12 * polkadot: bump transaction_version to 13
28 lines
1.1 KiB
TOML
28 lines
1.1 KiB
TOML
[package]
|
|
name = "test-parachain-adder"
|
|
version = "0.9.25"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Test parachain which adds to a number as its state transition"
|
|
edition = "2021"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] }
|
|
parity-scale-codec = { version = "3.1.2", default-features = false, features = ["derive"] }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
|
|
dlmalloc = { version = "0.2.3", features = [ "global" ] }
|
|
|
|
# We need to make sure the global allocator is disabled until we have support of full substrate externalities
|
|
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = [ "disable_allocator" ] }
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"parachain/std",
|
|
"sp-std/std",
|
|
]
|