mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
48ea86f0e8
Missing descriptions (47): - [x] `cumulus/client/collator/Cargo.toml` - [x] `cumulus/client/relay-chain-inprocess-interface/Cargo.toml` - [x] `cumulus/client/cli/Cargo.toml` - [x] `cumulus/client/service/Cargo.toml` - [x] `cumulus/client/relay-chain-rpc-interface/Cargo.toml` - [x] `cumulus/client/relay-chain-interface/Cargo.toml` - [x] `cumulus/client/relay-chain-minimal-node/Cargo.toml` - [x] `cumulus/parachains/pallets/parachain-info/Cargo.toml` - [x] `cumulus/parachains/pallets/ping/Cargo.toml` - [x] `cumulus/primitives/utility/Cargo.toml` - [x] `cumulus/primitives/aura/Cargo.toml` - [x] `cumulus/primitives/core/Cargo.toml` - [x] `cumulus/primitives/parachain-inherent/Cargo.toml` - [x] `cumulus/test/relay-sproof-builder/Cargo.toml` - [x] `cumulus/pallets/xcmp-queue/Cargo.toml` - [x] `cumulus/pallets/dmp-queue/Cargo.toml` - [x] `cumulus/pallets/xcm/Cargo.toml` - [x] `polkadot/erasure-coding/Cargo.toml` - [x] `polkadot/statement-table/Cargo.toml` - [x] `polkadot/primitives/Cargo.toml` - [x] `polkadot/rpc/Cargo.toml` - [x] `polkadot/node/service/Cargo.toml` - [x] `polkadot/node/core/parachains-inherent/Cargo.toml` - [x] `polkadot/node/core/approval-voting/Cargo.toml` - [x] `polkadot/node/core/dispute-coordinator/Cargo.toml` - [x] `polkadot/node/core/av-store/Cargo.toml` - [x] `polkadot/node/core/chain-api/Cargo.toml` - [x] `polkadot/node/core/prospective-parachains/Cargo.toml` - [x] `polkadot/node/core/backing/Cargo.toml` - [x] `polkadot/node/core/provisioner/Cargo.toml` - [x] `polkadot/node/core/runtime-api/Cargo.toml` - [x] `polkadot/node/core/bitfield-signing/Cargo.toml` - [x] `polkadot/node/network/dispute-distribution/Cargo.toml` - [x] `polkadot/node/network/bridge/Cargo.toml` - [x] `polkadot/node/network/collator-protocol/Cargo.toml` - [x] `polkadot/node/network/approval-distribution/Cargo.toml` - [x] `polkadot/node/network/availability-distribution/Cargo.toml` - [x] `polkadot/node/network/bitfield-distribution/Cargo.toml` - [x] `polkadot/node/network/gossip-support/Cargo.toml` - [x] `polkadot/node/network/availability-recovery/Cargo.toml` - [x] `polkadot/node/collation-generation/Cargo.toml` - [x] `polkadot/node/overseer/Cargo.toml` - [x] `polkadot/runtime/parachains/Cargo.toml` - [x] `polkadot/runtime/common/slot_range_helper/Cargo.toml` - [x] `polkadot/runtime/metrics/Cargo.toml` - [x] `polkadot/xcm/pallet-xcm-benchmarks/Cargo.toml` - [x] `polkadot/utils/generate-bags/Cargo.toml` - [x] `substrate/bin/minimal/runtime/Cargo.toml` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Signed-off-by: alindima <alin@parity.io> Co-authored-by: ordian <noreply@reusable.software> Co-authored-by: Tsvetomir Dimitrov <tsvetomir@parity.io> Co-authored-by: Marcin S <marcin@realemail.net> Co-authored-by: alindima <alin@parity.io> Co-authored-by: Sebastian Kunert <skunert49@gmail.com> Co-authored-by: Dmitry Markin <dmitry@markin.tech> Co-authored-by: joe petrowski <25483142+joepetrowski@users.noreply.github.com> Co-authored-by: Liam Aharon <liam.aharon@hotmail.com>
46 lines
1.7 KiB
TOML
46 lines
1.7 KiB
TOML
[package]
|
|
authors.workspace = true
|
|
name = "cumulus-relay-chain-inprocess-interface"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
description = "Implementation of the RelayChainInterface trait for Polkadot full-nodes."
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.73"
|
|
futures = "0.3.28"
|
|
futures-timer = "3.0.2"
|
|
|
|
# Substrate
|
|
sc-cli = { path = "../../../substrate/client/cli" }
|
|
sc-client-api = { path = "../../../substrate/client/api" }
|
|
sc-telemetry = { path = "../../../substrate/client/telemetry" }
|
|
sc-tracing = { path = "../../../substrate/client/tracing" }
|
|
sc-sysinfo = { path = "../../../substrate/client/sysinfo" }
|
|
sp-api = { path = "../../../substrate/primitives/api" }
|
|
sp-consensus = { path = "../../../substrate/primitives/consensus/common" }
|
|
sp-core = { path = "../../../substrate/primitives/core" }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime" }
|
|
sp-state-machine = { path = "../../../substrate/primitives/state-machine" }
|
|
|
|
# Polkadot
|
|
polkadot-cli = { path = "../../../polkadot/cli", default-features = false, features = ["cli"] }
|
|
polkadot-service = { path = "../../../polkadot/node/service" }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
|
|
|
|
[dev-dependencies]
|
|
|
|
# Substrate
|
|
sp-keyring = { path = "../../../substrate/primitives/keyring" }
|
|
|
|
# Polkadot
|
|
polkadot-primitives = { path = "../../../polkadot/primitives" }
|
|
polkadot-test-client = { path = "../../../polkadot/node/test/client" }
|
|
metered = { package = "prioritized-metered-channel", version = "0.5.1", default-features = false, features=["futures_channel"] }
|
|
|
|
# Cumulus
|
|
cumulus-test-service = { path = "../../test/service" }
|