From f9853aa033a9a1bb110fb0adc88237137cc98b7f Mon Sep 17 00:00:00 2001 From: andrussal Date: Wed, 10 Dec 2025 16:04:03 +0100 Subject: [PATCH] Remove unused deps from testing-framework-core --- Cargo.lock | 3 --- testing-framework/core/Cargo.toml | 3 --- 2 files changed, 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c45d4c2..17428d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7230,14 +7230,12 @@ version = "0.1.0" dependencies = [ "anyhow", "async-trait", - "broadcast-service", "chain-service", "common-http-client", "futures", "groth16", "hex", "key-management-system-service", - "kzgrs-backend", "nomos-core", "nomos-da-network-core", "nomos-da-network-service", @@ -7261,7 +7259,6 @@ dependencies = [ "thiserror 2.0.17", "tokio", "tracing", - "tx-service", ] [[package]] diff --git a/testing-framework/core/Cargo.toml b/testing-framework/core/Cargo.toml index 55fdb69..94c43e7 100644 --- a/testing-framework/core/Cargo.toml +++ b/testing-framework/core/Cargo.toml @@ -18,14 +18,12 @@ default = [] [dependencies] anyhow = "1" async-trait = "0.1" -broadcast-service = { workspace = true } chain-service = { workspace = true } common-http-client = { workspace = true } futures = { default-features = false, version = "0.3" } groth16 = { workspace = true } hex = { version = "0.4.3", default-features = false } key-management-system-service = { workspace = true } -kzgrs-backend = { workspace = true } nomos-core = { workspace = true } nomos-da-network-core = { workspace = true } nomos-da-network-service = { workspace = true } @@ -49,4 +47,3 @@ testing-framework-config = { workspace = true } thiserror = { workspace = true } tokio = { workspace = true, features = ["macros", "process", "rt-multi-thread", "time"] } tracing = { workspace = true } -tx-service = { workspace = true, features = ["libp2p", "mock"] }