From 27f8a47620aa1380d1ffb432007b039d9f43f8ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Apr 2024 03:12:28 +0000 Subject: [PATCH] Update kube requirement from 0.87 to 0.90 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.87.1...0.90.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 d0a724b..e44fb93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ default = [] experimental = [] [dependencies] -kube = { version = "0.87", default-features = false, features = ["derive"] } +kube = { version = "0.90", default-features = false, features = ["derive"] } k8s-openapi = { version = "0.20", features = ["schemars"] } schemars = { version = "0.8", features = ["derive"] } serde = { version = "1", features = ["derive"] } diff --git a/integration/Cargo.toml b/integration/Cargo.toml index ad98692..907653c 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.87" +version = "0.90" default-features = false features = ["client", "openssl-tls", "runtime", "ws"]