mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 15:17:57 +00:00
9f09698a07
* Removed unused deps with `cargo machete` * Removed unused deps with `cargo machete` for parachain-template
30 lines
1.3 KiB
TOML
30 lines
1.3 KiB
TOML
[package]
|
|
name = "cumulus-client-service"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
parking_lot = "0.12.1"
|
|
|
|
# Substrate
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-service = { 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 = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Polkadot
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# Cumulus
|
|
cumulus-client-cli = { path = "../cli" }
|
|
cumulus-client-collator = { path = "../collator" }
|
|
cumulus-client-consensus-common = { path = "../consensus/common" }
|
|
cumulus-client-pov-recovery = { path = "../pov-recovery" }
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
cumulus-relay-chain-interface = { path = "../relay-chain-interface" }
|