mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 12:51:02 +00:00
262574fc49
* update primitives * correct parent_head field * make hrmp field pub * refactor validation data: runtime * refactor validation data: messages * add arguments to full_validation_data runtime API * port runtime API * mostly port over candidate validation * remove some parameters from ValidationParams * guide: update candidate validation * update candidate outputs * update ValidationOutputs in primitives * port over candidate validation * add a new test for no-transient behavior * update util runtime API wrappers * candidate backing * fix missing imports * change some fields of validation data around * runtime API impl * update candidate validation * fix backing tests * grumbles from review * fix av-store tests * fix some more crates * fix provisioner tests * fix availability distribution tests * port collation-generation to new validation data * fix overseer tests * Update roadmap/implementers-guide/src/node/utility/candidate-validation.md Co-authored-by: Peter Goodspeed-Niklaus <coriolinus@users.noreply.github.com> Co-authored-by: Peter Goodspeed-Niklaus <coriolinus@users.noreply.github.com>
25 lines
682 B
TOML
25 lines
682 B
TOML
[package]
|
|
name = "test-parachains"
|
|
version = "0.7.22"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Integration tests using the test-parachains"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tiny-keccak = "1.5.0"
|
|
codec = { package = "parity-scale-codec", version = "1.3.4", default-features = false, features = ["derive"] }
|
|
|
|
parachain = { package = "polkadot-parachain", path = ".." }
|
|
adder = { package = "test-parachain-adder", path = "adder" }
|
|
halt = { package = "test-parachain-halt", path = "halt" }
|
|
|
|
[dev-dependencies]
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"adder/std",
|
|
"halt/std",
|
|
]
|