mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-29 17:17:56 +00:00
8f3317d056
* Update scale codec to latest version to fix bug in future rustc version Companion of: https://github.com/paritytech/substrate/pull/6746 * 'Update substrate' Co-authored-by: parity-processbot <>
24 lines
920 B
TOML
24 lines
920 B
TOML
[package]
|
|
name = "polkadot-network-bridge"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
futures = "0.3.5"
|
|
log = "0.4.8"
|
|
futures-timer = "3.0.2"
|
|
streamunordered = "0.5.1"
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
node-primitives = { package = "polkadot-node-primitives", path = "../../primitives" }
|
|
parity-scale-codec = "1.3.4"
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem" }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.3.0"
|
|
parking_lot = "0.10.0"
|
|
polkadot-subsystem = { package = "polkadot-node-subsystem", path = "../../subsystem", features = [ "test-helpers" ] }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|