mc-ingress/Cargo.toml
2025-11-25 16:18:38 +01:00

39 lines
1 KiB
TOML

[package]
name = "quick-start"
version = "0.1.0"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# THE kubernetes api
kube = { version = "2.0.1", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.26.0", features = ["latest", "schemars"] }
schemars = { version = "1" }
# Tokio
tokio = { version = "1.14.0", features = ["full"] }
tokio-stream = { version = "0.1.9", features = ["net"] }
# Error tracing?
tracing = "0.1.36"
tracing-subscriber = "0.3.17"
# Needed to parse data to yaml in kubectl
serde = "1.0.130"
serde_json = "1.0.68"
serde_derive = "1.0.130"
serde_yaml = "0.9.19"
serde-value = "0.7.0"
# .with_context()
# Should be a error handling and context library
anyhow = "1.0.71"
# CLI arg parser
clap = { version = "4.0", default-features = false, features = ["std", "cargo", "derive"] }
futures = { version = "0.3.17", default-features = false }
either = "1.6.1"
nix = { version= "0.30.1", features = [ "zerocopy"] }