2025-12-01 12:48:39 +01:00
|
|
|
[package]
|
|
|
|
|
categories.workspace = true
|
|
|
|
|
description.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
keywords.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
name = "testing-framework-runner-compose"
|
|
|
|
|
readme.workspace = true
|
|
|
|
|
repository.workspace = true
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-01-19 08:48:05 +02:00
|
|
|
anyhow = "1"
|
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
|
cfgsync_tf = { workspace = true }
|
2026-02-07 09:43:31 +02:00
|
|
|
lb-tracing = { workspace = true }
|
|
|
|
|
lb-tracing-service = { workspace = true }
|
2026-01-25 10:11:16 +02:00
|
|
|
reqwest = { features = ["json"], workspace = true }
|
|
|
|
|
serde = { features = ["derive"], workspace = true }
|
2026-01-19 08:48:05 +02:00
|
|
|
tempfile = { workspace = true }
|
|
|
|
|
tera = "1.19"
|
|
|
|
|
testing-framework-config = { workspace = true }
|
|
|
|
|
testing-framework-core = { path = "../../core" }
|
|
|
|
|
testing-framework-env = { workspace = true }
|
|
|
|
|
thiserror = { workspace = true }
|
2026-01-25 10:11:16 +02:00
|
|
|
tokio = { features = ["macros", "net", "process", "rt-multi-thread", "sync", "time"], workspace = true }
|
2026-01-19 08:48:05 +02:00
|
|
|
tracing = { workspace = true }
|
|
|
|
|
url = { version = "2" }
|
2026-01-25 10:11:16 +02:00
|
|
|
uuid = { features = ["v4"], version = "1" }
|
2025-12-01 12:48:39 +01:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2026-02-07 09:43:31 +02:00
|
|
|
lb-core = { workspace = true }
|
|
|
|
|
lb-groth16 = { workspace = true }
|
|
|
|
|
lb-key-management-system-service = { workspace = true }
|
|
|
|
|
lb-ledger = { workspace = true }
|
|
|
|
|
lb-zksign = { workspace = true }
|