mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-30 23:37:24 +00:00
e49493442a
* Add CI for monorepo * fix frame tests * Format features Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * add note for skipping tests and disable test-linux-stable-all * Fix tests and compile issues (#1152) * Fix feature dependant import Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Bump test timeout Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove feature gate Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Add resolver 2 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Remove old lockfile Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Format features Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Fix check-dependency-rules Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * rm test-runtime Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Actually fix script Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * enable cargo-check-each-crate-macos * Run check-each-crate on 6 machines (#1163) --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
42 lines
1.8 KiB
TOML
42 lines
1.8 KiB
TOML
[package]
|
|
name = "polkadot-test-client"
|
|
publish = false
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
|
|
|
# Polkadot dependencies
|
|
polkadot-test-runtime = { path = "../../../runtime/test-runtime" }
|
|
polkadot-test-service = { path = "../service" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-node-subsystem = { path = "../../subsystem" }
|
|
|
|
# Substrate dependencies
|
|
substrate-test-client = { path = "../../../../substrate/test-utils/client" }
|
|
sc-service = { path = "../../../../substrate/client/service" }
|
|
sc-block-builder = { path = "../../../../substrate/client/block-builder" }
|
|
sc-consensus = { path = "../../../../substrate/client/consensus/common" }
|
|
sc-offchain = { path = "../../../../substrate/client/offchain" }
|
|
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
|
|
sp-inherents = { path = "../../../../substrate/primitives/inherents" }
|
|
sp-core = { path = "../../../../substrate/primitives/core" }
|
|
sp-api = { path = "../../../../substrate/primitives/api" }
|
|
sp-timestamp = { path = "../../../../substrate/primitives/timestamp" }
|
|
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
|
|
sp-consensus-babe = { path = "../../../../substrate/primitives/consensus/babe" }
|
|
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
|
|
sp-io = { path = "../../../../substrate/primitives/io" }
|
|
frame-benchmarking = { path = "../../../../substrate/frame/benchmarking" }
|
|
|
|
[dev-dependencies]
|
|
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
|
futures = "0.3.21"
|
|
|
|
[features]
|
|
runtime-benchmarks=[ "polkadot-test-runtime/runtime-benchmarks" ]
|