mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-23 15:31:08 +00:00
fe6351ca65
* read head-data directly out of WASM memory * implement ext_post_message for parachain WASM * further refactoring of the parachain module * add externalities error type * accumulate posted messages when validating parachain candidate * define Extrinsic type in primitives * availability-store: store extrinsic data * compute extrinsic and check against candidate * add some egress queue tests * grumbles & substrate update * ensure everything builds
21 lines
420 B
TOML
21 lines
420 B
TOML
[package]
|
|
name = "adder-wasm"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
adder = { path = ".." }
|
|
polkadot-parachain = { path = "../../../parachain", default-features = false, features = ["wasm-api"] }
|
|
wee_alloc = { version = "0.4.1" }
|
|
pwasm-libc = { version = "0.2" }
|
|
tiny-keccak = "1.4"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[target.release]
|
|
panic = "abort"
|
|
lto = true
|
|
|
|
[workspace]
|