From 57fbd24f7ce5d08cb849ff3285d8b4116ff2648b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 03:08:02 +0000 Subject: [PATCH] Update k8s-openapi requirement from 0.20 to 0.21 Updates the requirements on [k8s-openapi](https://github.com/Arnavion/k8s-openapi) to permit the latest version. - [Release notes](https://github.com/Arnavion/k8s-openapi/releases) - [Changelog](https://github.com/Arnavion/k8s-openapi/blob/master/CHANGELOG.md) - [Commits](https://github.com/Arnavion/k8s-openapi/compare/v0.20.0...v0.21.0) --- updated-dependencies: - dependency-name: k8s-openapi dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- integration/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d0a724b..535b5dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,13 +17,13 @@ experimental = [] [dependencies] kube = { version = "0.87", default-features = false, features = ["derive"] } -k8s-openapi = { version = "0.20", features = ["schemars"] } +k8s-openapi = { version = "0.21", features = ["schemars"] } schemars = { version = "0.8", features = ["derive"] } serde = { version = "1", features = ["derive"] } serde_json = "1" [dev-dependencies.k8s-openapi] -version = "0.20" +version = "0.21" default-features = false features = ["latest"] diff --git a/integration/Cargo.toml b/integration/Cargo.toml index ad98692..ba515e0 100644 --- a/integration/Cargo.toml +++ b/integration/Cargo.toml @@ -6,7 +6,7 @@ license = "Apache-2.0" publish = false [dev-dependencies] -k8s-openapi = { version = "0.20", features = ["latest"] } +k8s-openapi = { version = "0.21", features = ["latest"] } tokio = { version = "1", features = ["macros", "rt"] } tracing = "0.1" k8s-gateway-api = { path = ".." }