mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 19:51:02 +00:00
2ce882fff0
* Companion for https://github.com/paritytech/substrate/pull/13725 * Add comment * update lockfile for {"substrate", "polkadot"} --------- Co-authored-by: parity-processbot <>
42 lines
2.2 KiB
TOML
42 lines
2.2 KiB
TOML
[package]
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
name = "cumulus-relay-chain-minimal-node"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# polkadot deps
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-core-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-node-subsystem-util = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-node-network-protocol = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-network-bridge = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# substrate deps
|
|
sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# cumulus deps
|
|
cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
|
|
cumulus-relay-chain-rpc-interface = { path = "../relay-chain-rpc-interface" }
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
|
|
array-bytes = "6.0"
|
|
lru = "0.9"
|
|
tracing = "0.1.37"
|
|
async-trait = "0.1.68"
|
|
futures = "0.3.27"
|
|
tokio = { version = "1.26.0", features = ["macros"] }
|