mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 01:17:57 +00:00
63efcc49c3
* Start with something * Whatever * Update * MOARE * Make cumulus-network compile and tests work * Update more and fixes * More stuff * More fixes * Make collator build * Make test almost work * Remove contracts runtime * More test work * Make service compile * Fix test-service * Fix test client * More fixes * Fix collator test * Fix network tests (again) * Make everything compile, finally * Fix tests * Write test that should fail * Add `WaitOnRelayChainBlock` * Update git versions * Make it all work * Update logging * Switch to provided method for pushing an extrinsic * Try to debug CI * Aaaa * Only use Debug * Updates * Use native execution to hopefully make CI happy...
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-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"] }
|
|
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" }
|