mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 02:17:58 +00:00
6438d328b8
* Complete telemetry for parachain & relaychain * Update Substrate & Polkadot
50 lines
2.3 KiB
TOML
50 lines
2.3 KiB
TOML
[package]
|
|
name = "cumulus-network"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Cumulus-specific networking protocol"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# Substrate deps
|
|
sp-blockchain = { 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" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
# Polkadot deps
|
|
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-statement-table = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-overseer = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-node-subsystem = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# Cumulus deps
|
|
cumulus-primitives = { path = "../primitives" }
|
|
|
|
# other deps
|
|
codec = { package = "parity-scale-codec", version = "2.0.0", features = [ "derive" ] }
|
|
futures = { version = "0.3.1", features = ["compat"] }
|
|
futures-timer = "3.0.2"
|
|
log = "0.4.8"
|
|
parking_lot = "0.10.2"
|
|
derive_more = "0.99.2"
|
|
|
|
[dev-dependencies]
|
|
# Cumulus deps
|
|
cumulus-test-service = { path = "../test/service" }
|
|
|
|
# Polkadot deps
|
|
polkadot-test-client = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# substrate deps
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
|