Cargo.toml 1.09 KiB
Newer Older
version = "0.6.0"
authors = ["Parity Technologies <[email protected]>"]
description = "Test parachain which adds to a number as its state transition"
edition = "2018"
build = "build.rs"
parachain = { package = "polkadot-parachain", path = "../../parachain/", default-features = false }
codec = { package = "parity-scale-codec", version = "~1.0.0", default-features = false, features = ["derive"] }
tiny-keccak = "1.5.0"
dlmalloc = { version = "0.1.3", features = ["global"], optional = true }

# We need to make sure the global allocator is disabled until we have support of full substrate externalities
Gavin Wood's avatar
Gavin Wood committed
rstd = { package = "sr-std", git = "https://github.com/paritytech/substrate", branch = "polkadot-master", default-features = false }

[build-dependencies]
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.2" }

[features]
default = [ "std" ]
no_std = [
	# We need to make sure the global allocator is disabled until we have support of full substrate externalities
	"rstd/no_global_allocator",
	"parachain/wasm-api",
	"dlmalloc",
]