Remove unused deps from testing-framework-core

This commit is contained in:
andrussal 2025-12-10 16:04:03 +01:00
parent 1e1ff1edf8
commit f9853aa033
2 changed files with 0 additions and 6 deletions

3
Cargo.lock generated
View File

@ -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]]

View File

@ -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"] }