mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-22 22:01:08 +00:00
1736c2d576
* Copy over files * Most network tests work * Fix copyrights * Strip out unneeded pallets * Update test-runtime and remove unused network test things * Upgrade test runtime * Strip more things out of the test runtime * Bump kusama impl version
25 lines
1.2 KiB
TOML
25 lines
1.2 KiB
TOML
[package]
|
|
name = "polkadot-network-test"
|
|
version = "0.8.0"
|
|
license = "GPL-3.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
log = "0.4.8"
|
|
parking_lot = "0.10.0"
|
|
futures = "0.3.1"
|
|
rand = "0.7.2"
|
|
libp2p = { version = "0.16.2", default-features = false, features = ["libp2p-websocket"] }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sc-network-test = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sc-client = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
sc-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
env_logger = "0.7.0"
|
|
polkadot-test-runtime-client = { path = "../../runtime/test-runtime/client" }
|