shoebill/Cargo.toml
2023-11-06 21:45:48 +01:00

30 lines
530 B
TOML

[package]
name = "shoebill"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "server"
path = "src/server.rs"
[[bin]]
name = "client"
path = "src/cli/main.rs"
[dependencies]
tonic = "0.10"
prost = "0.12"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
clap = { version = "4.4.7", features = ["derive"] }
serde_yaml = "0.9.27"
serde = "1.0.190"
prost-serde = "0.3.0"
kube = "0.87.1"
k8s-openapi = { version = "0.20.0", features = ["latest"] }
[build-dependencies]
tonic-build = "0.10"
serde = "1.0.190"