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-k8s"
|
|
|
|
|
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 }
|
2026-01-25 10:11:16 +02:00
|
|
|
k8s-openapi = { features = ["latest"], version = "0.20" }
|
|
|
|
|
kube = { default-features = false, features = ["client", "runtime", "rustls-tls"], version = "0.87" }
|
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"], version = "1" }
|
2026-01-19 08:48:05 +02:00
|
|
|
serde_yaml = { workspace = true }
|
|
|
|
|
tempfile = { workspace = true }
|
|
|
|
|
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" }
|