Files
pezkuwi-subxt/polkadot/parachain/test-chains/basic_add/Cargo.toml
T
Dmitry Kashitsyn 6e96748be8 Reverts wee_alloc to a normal versioning scheme (#222)
* Reverts wee_alloc to a normal versioning scheme

* Removes `global_allocator` attribute, since it's now on by default

This feature has been stable since 1.28.0. Attribute no longer needed.
2018-06-19 11:27:33 +02:00

26 lines
485 B
TOML

[package]
name = "basic_add"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Test parachain which adds to a number as its state transition"
[lib]
crate-type = ["cdylib"]
[dependencies]
polkadot-parachain = { path = "../../", default-features = false }
wee_alloc = "0.4.1"
tiny-keccak = "1.4"
pwasm-libc = "0.2"
[features]
default = ["std"]
std = ["polkadot-parachain/std"]
[profile.release]
panic = "abort"
lto = true
[workspace]
members = []