From 7e0e5e379f2f157d319c45617b28689bb32667ea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Mar 2025 03:06:58 +0000 Subject: [PATCH] Update kube requirement from 0.98 to 0.99 Updates the requirements on [kube](https://github.com/kube-rs/kube) to permit the latest version. - [Release notes](https://github.com/kube-rs/kube/releases) - [Changelog](https://github.com/kube-rs/kube/blob/main/CHANGELOG.md) - [Commits](https://github.com/kube-rs/kube/compare/0.98.0...0.99.0) --- updated-dependencies: - dependency-name: kube dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- integration/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b678edf..0996cd1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ default = [] experimental = [] [dependencies] -kube = { version = "0.98", default-features = false, features = ["derive"] } +kube = { version = "0.99", default-features = false, features = ["derive"] } k8s-openapi = { version = "0.24", features = ["schemars"] } schemars = { version = "0.8", features = ["derive"] } serde = { version = "1", features = ["derive"] } diff --git a/integration/Cargo.toml b/integration/Cargo.toml index a2c5fa6..7ca8666 100644 --- a/integration/Cargo.toml +++ b/integration/Cargo.toml @@ -12,6 +12,6 @@ tracing = "0.1" k8s-gateway-api = { path = ".." } [dev-dependencies.kube] -version = "0.98" +version = "0.99" default-features = false features = ["client", "openssl-tls", "runtime", "ws"]