From 7f28ac620493c66e8907e4dce2897cb04279cb13 Mon Sep 17 00:00:00 2001 From: Andrei Sandu <54316454+sandreim@users.noreply.github.com> Date: Fri, 26 Jan 2024 12:55:38 +0200 Subject: [PATCH] Remove duplicate `subsystem-bench` from Cargo.toml (#3073) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤦🏼 --------- Signed-off-by: Andrei Sandu --- Cargo.toml | 1 - polkadot/node/subsystem-bench/Cargo.toml | 16 ++++++++-------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1edc64217f..20cc16039f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -159,7 +159,6 @@ members = [ "polkadot/node/gum/proc-macro", "polkadot/node/jaeger", "polkadot/node/malus", - "polkadot/node/subsystem-bench", "polkadot/node/metrics", "polkadot/node/network/approval-distribution", "polkadot/node/network/availability-distribution", diff --git a/polkadot/node/subsystem-bench/Cargo.toml b/polkadot/node/subsystem-bench/Cargo.toml index 40702411d8..11f53c6e8d 100644 --- a/polkadot/node/subsystem-bench/Cargo.toml +++ b/polkadot/node/subsystem-bench/Cargo.toml @@ -22,13 +22,13 @@ polkadot-node-subsystem-types = { path = "../subsystem-types" } polkadot-node-primitives = { path = "../primitives" } polkadot-primitives = { path = "../../primitives" } polkadot-node-network-protocol = { path = "../network/protocol" } -polkadot-availability-recovery = { path = "../network/availability-recovery", features=["subsystem-benchmarks"]} -polkadot-availability-distribution = { path = "../network/availability-distribution"} -polkadot-node-core-av-store = { path = "../core/av-store"} -polkadot-node-core-chain-api = { path = "../core/chain-api"} -polkadot-availability-bitfield-distribution = { path = "../network/bitfield-distribution"} +polkadot-availability-recovery = { path = "../network/availability-recovery", features = ["subsystem-benchmarks"] } +polkadot-availability-distribution = { path = "../network/availability-distribution" } +polkadot-node-core-av-store = { path = "../core/av-store" } +polkadot-node-core-chain-api = { path = "../core/chain-api" } +polkadot-availability-bitfield-distribution = { path = "../network/bitfield-distribution" } color-eyre = { version = "0.6.1", default-features = false } -polkadot-overseer = { path = "../overseer" } +polkadot-overseer = { path = "../overseer" } colored = "2.0.4" assert_matches = "1.5" async-trait = "0.1.57" @@ -45,10 +45,10 @@ env_logger = "0.9.0" rand = "0.8.5" # `rand` only supports uniform distribution, we need normal distribution for latency. rand_distr = "0.4.3" -bitvec="1.0.1" +bitvec = "1.0.1" kvdb-memorydb = "0.13.0" -parity-scale-codec = { version = "3.6.1", features = ["std", "derive"] } +parity-scale-codec = { version = "3.6.1", features = ["derive", "std"] } tokio = "1.24.2" clap-num = "1.0.2" polkadot-node-subsystem-test-helpers = { path = "../subsystem-test-helpers" }