mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 10:48:00 +00:00
1aab3349cc
* Use DecodeLimit for decoding XCM messages * Use decode_all_with_depth_limit in appropriate places * Use decode_all while decoding byte vector * cargo fmt
50 lines
2.3 KiB
TOML
50 lines
2.3 KiB
TOML
[package]
|
|
name = "cumulus-client-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-node-primitives = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-client = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "master" }
|
|
|
|
# other deps
|
|
codec = { package = "parity-scale-codec", version = "2.3.0", features = [ "derive" ] }
|
|
futures = { version = "0.3.1", features = ["compat"] }
|
|
futures-timer = "3.0.2"
|
|
tracing = "0.1.22"
|
|
parking_lot = "0.10.2"
|
|
derive_more = "0.99.2"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.10", features = ["macros"] }
|
|
|
|
# Cumulus deps
|
|
cumulus-test-service = { path = "../../test/service" }
|
|
cumulus-primitives-core = { path = "../../primitives/core" }
|
|
|
|
# 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" }
|
|
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|