mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 14:27:57 +00:00
182109ef5f
* Switch to polkadot master branch * Fix compilation
43 lines
2.0 KiB
TOML
43 lines
2.0 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-validation = { 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" }
|
|
|
|
# cumulus deps
|
|
cumulus-primitives = { path = "../primitives" }
|
|
|
|
# other deps
|
|
codec = { package = "parity-scale-codec", version = "1.3.0", features = [ "derive" ] }
|
|
futures = { version = "0.3.1", features = ["compat"] }
|
|
log = "0.4.8"
|
|
parking_lot = "0.10.2"
|
|
|
|
[dev-dependencies]
|
|
cumulus-test-runtime = { path = "../test/runtime" }
|
|
|
|
# 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" }
|