Files
harmony/harmony_e2e_tests/Cargo.toml

33 lines
852 B
TOML

[package]
name = "harmony_e2e_tests"
version = "0.1.0"
edition = "2021"
description = "Harmony end-to-end test runner"
license = "Apache-2.0"
repository = "https://github.com/nationtech/harmony"
rust-version = "1.75.0"
[dependencies]
clap = { version = "4.4", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
env_logger = "0.11"
kube = { workspace = true }
k8s-openapi = { workspace = true }
log = "0.4"
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = "2.0"
tokio = { workspace = true }
which = "7.0"
inventory = "0.3"
tempfile = { workspace = true }
k3d-rs = { path = "../k3d" }
harmony = { path = "../harmony" }
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "tls-rustls"] }
tokio-stream = "0.1"
async-trait.workspace = true
[[bin]]
name = "harmony-e2e"
path = "src/main.rs"