mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 19:51:02 +00:00
8f3317d056
* Update scale codec to latest version to fix bug in future rustc version Companion of: https://github.com/paritytech/substrate/pull/6746 * 'Update substrate' Co-authored-by: parity-processbot <>
27 lines
789 B
TOML
27 lines
789 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" }
|
|
code-upgrader = { package = "test-parachain-code-upgrader", path = "code-upgrader" }
|
|
|
|
[dev-dependencies]
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"adder/std",
|
|
"halt/std",
|
|
"code-upgrader/std",
|
|
]
|