[package]
name = "tatara-export-worker"
description = "Runs one declared ExportSpec from an ephemeral Process — reads the artifact, ships through the chosen VectorChannel, emits a typed export receipt"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
[lib]
path = "src/lib.rs"
[[bin]]
name = "tatara-export-worker"
path = "src/main.rs"
[dependencies]
tatara-process = { path = "../tatara-process" , version = "0.2.65" }
kube = { version = "0.99", features = ["runtime", "client"] }
k8s-openapi = { version = "0.24", features = ["latest"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
async-nats = "0.39"
blake3 = "1"
hex = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", features = ["derive", "env"] }
anyhow = "1"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }