Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

[DNM] try-runtime testing #6018

Closed
wants to merge 15 commits into from
1,590 changes: 1,297 additions & 293 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ assert_cmd = "2.0.4"
nix = "0.24.1"
tempfile = "3.2.0"
tokio = "1.22.0"
substrate-rpc-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-rpc-client = { git = "https://github.com/paritytech/substrate", branch = "bkchr-speed-up-kademlia" }
polkadot-core-primitives = { path = "core-primitives" }

[workspace]
Expand Down
272 changes: 0 additions & 272 deletions README.md

This file was deleted.

22 changes: 11 additions & 11 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@ polkadot-client = { path = "../node/client", optional = true }
polkadot-node-core-pvf = { path = "../node/core/pvf", optional = true }
polkadot-performance-test = { path = "../node/test/performance-test", optional = true }

sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "bkchr-speed-up-kademlia" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "bkchr-speed-up-kademlia" }
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "bkchr-speed-up-kademlia" }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "bkchr-speed-up-kademlia" }
try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "bkchr-speed-up-kademlia" }
sc-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "bkchr-speed-up-kademlia" }
sc-service = { git = "https://github.com/paritytech/substrate", optional = true , branch = "bkchr-speed-up-kademlia" }
polkadot-node-metrics = { path = "../node/metrics" }
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-tracing = { git = "https://github.com/paritytech/substrate", optional = true , branch = "bkchr-speed-up-kademlia" }
sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "bkchr-speed-up-kademlia" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "bkchr-speed-up-kademlia" }

[build-dependencies]
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "bkchr-speed-up-kademlia" }

[features]
default = ["db", "cli", "hostperfcheck", "full-node", "polkadot-native"]
Expand Down
6 changes: 3 additions & 3 deletions core-primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ authors.workspace = true
edition.workspace = true

[dependencies]
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "bkchr-speed-up-kademlia" }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "bkchr-speed-up-kademlia" }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "bkchr-speed-up-kademlia" }
scale-info = { version = "2.1.2", default-features = false, features = ["derive"] }
parity-scale-codec = { version = "3.1.5", default-features = false, features = [ "derive" ] }

Expand Down
4 changes: 2 additions & 2 deletions erasure-coding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ polkadot-primitives = { path = "../primitives" }
polkadot-node-primitives = { package = "polkadot-node-primitives", path = "../node/primitives" }
novelpoly = { package = "reed-solomon-novelpoly", version = "1.0.0" }
parity-scale-codec = { version = "3.1.5", default-features = false, features = ["std", "derive"] }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "bkchr-speed-up-kademlia" }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "bkchr-speed-up-kademlia" }
thiserror = "1.0.31"
Loading