mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 14:01:02 +00:00
29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
name = "test-parachain-undying"
|
|
description = "Test parachain for zombienet integration tests"
|
|
build = "build.rs"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] }
|
|
parity-scale-codec = { version = "3.4.0", 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.4", features = [ "global" ] }
|
|
log = { version = "0.4.17", default-features = false }
|
|
|
|
# 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",
|
|
]
|