mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 07:58:02 +00:00
a33d7922f8
* Rename `polkadot-parachain` to `polkadot-parachain-primitives` While doing this it also fixes some last `rustdoc` issues and fixes another Cargo warning related to `pallet-paged-list`. * Fix compilation * ".git/.scripts/commands/fmt/fmt.sh" * Fix XCM docs --------- Co-authored-by: command-bot <>
40 lines
1.8 KiB
TOML
40 lines
1.8 KiB
TOML
[package]
|
|
name = "cumulus-test-client"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [ "derive" ] }
|
|
|
|
# Substrate
|
|
sc-service = { path = "../../../substrate/client/service" }
|
|
sc-consensus = { path = "../../../substrate/client/consensus/common" }
|
|
sc-block-builder = { path = "../../../substrate/client/block-builder" }
|
|
sc-executor = { path = "../../../substrate/client/executor" }
|
|
sc-executor-common = { path = "../../../substrate/client/executor/common" }
|
|
substrate-test-client = { path = "../../../substrate/test-utils/client" }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
|
sp-core = { path = "../../../substrate/primitives/core" }
|
|
sp-api = { path = "../../../substrate/primitives/api" }
|
|
sp-keyring = { path = "../../../substrate/primitives/keyring" }
|
|
sp-blockchain = { path = "../../../substrate/primitives/blockchain" }
|
|
sp-inherents = { path = "../../../substrate/primitives/inherents" }
|
|
sp-io = { path = "../../../substrate/primitives/io" }
|
|
sp-timestamp = { path = "../../../substrate/primitives/timestamp" }
|
|
frame-system = { path = "../../../substrate/frame/system" }
|
|
pallet-transaction-payment = { path = "../../../substrate/frame/transaction-payment" }
|
|
pallet-balances = { path = "../../../substrate/frame/balances" }
|
|
|
|
# Polkadot
|
|
polkadot-primitives = { path = "../../../polkadot/primitives" }
|
|
polkadot-parachain-primitives = { path = "../../../polkadot/parachain" }
|
|
|
|
# Cumulus
|
|
cumulus-test-runtime = { path = "../runtime" }
|
|
cumulus-test-service = { path = "../service" }
|
|
cumulus-test-relay-sproof-builder = { path = "../relay-sproof-builder" }
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
cumulus-primitives-parachain-inherent = { path = "../../primitives/parachain-inherent" }
|