From 815e96d36c8a29ada355b8b3737c80ee9b4aa780 Mon Sep 17 00:00:00 2001 From: Raminder Singh Date: Tue, 30 Jul 2024 19:12:03 +0530 Subject: [PATCH] add k8s-openapi dependency --- Cargo.toml | 1 + api/Cargo.toml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f0e6864..08d5c88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,6 +18,7 @@ gcp-bigquery-client = { git = "https://github.com/imor/gcp-bigquery-client.git", pin-project-lite = { version = "0.2", default-features = false } postgres-protocol = { git = "https://github.com/MaterializeInc/rust-postgres" } prost = { version = "0.13.1", default-features = false } +k8s-openapi = { version = "0.22.0", default-features = false } kube = { version = "0.93.1", default-features = false } secrecy = { version = "0.8.0", default-features = false } serde = { version = "1.0", default-features = false } diff --git a/api/Cargo.toml b/api/Cargo.toml index b482ae0..00f34dd 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -15,7 +15,8 @@ actix-web = { workspace = true, features = ["macros", "http2"] } anyhow = { workspace = true, features = ["std"] } bytes = { workspace = true } config = { workspace = true, features = ["yaml"] } -kube = { workspace = true } +k8s-openapi = { workspace = true, features = ["latest"] } +kube = { workspace = true, features = ["runtime", "derive"] } secrecy = { workspace = true, features = ["serde", "alloc"] } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true, features = ["std"] }