mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-23 10:51:10 +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
20 lines
564 B
TOML
20 lines
564 B
TOML
[package]
|
|
name = "polkadot-parachain"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Types and utilities for creating and working with parachains"
|
|
|
|
[dependencies]
|
|
parity-codec = { version = "2.1", default-features = false }
|
|
parity-codec-derive = { version = "2.1", default-features = false }
|
|
wasmi = { version = "0.4.3", optional = true }
|
|
error-chain = { version = "0.12", optional = true }
|
|
|
|
[dev-dependencies]
|
|
tiny-keccak = "1.4"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
wasm-api = []
|
|
std = ["parity-codec/std", "wasmi", "error-chain"]
|