From 0dc66e725c9152d6ddea07e32e407449e1e898a8 Mon Sep 17 00:00:00 2001 From: clux Date: Thu, 15 Sep 2022 21:11:39 +0100 Subject: [PATCH] cargo upgrade k8s-openapi --workspace Signed-off-by: clux --- e2e/Cargo.toml | 2 +- examples/Cargo.toml | 2 +- kube-client/Cargo.toml | 4 ++-- kube-core/Cargo.toml | 4 ++-- kube-derive/Cargo.toml | 2 +- kube-runtime/Cargo.toml | 4 ++-- kube/Cargo.toml | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/e2e/Cargo.toml b/e2e/Cargo.toml index d3a211c45..da7e3507b 100644 --- a/e2e/Cargo.toml +++ b/e2e/Cargo.toml @@ -29,6 +29,6 @@ tracing = "0.1.29" tracing-subscriber = "0.3.3" futures = "0.3.17" kube = { path = "../kube", version = "^0.74.0", default-features = false, features = ["client", "runtime", "ws", "admission", "gzip"] } -k8s-openapi = { version = "0.15.0", default-features = false } +k8s-openapi = { version = "0.16.0", default-features = false } serde_json = "1.0.68" tokio = { version = "1.14.0", features = ["full"] } diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 504b33a29..e4bf3bf5e 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -31,7 +31,7 @@ futures = "0.3.17" jsonpath_lib = "0.3.0" kube = { path = "../kube", version = "^0.74.0", default-features = false, features = ["admission"] } kube-derive = { path = "../kube-derive", version = "^0.74.0", default-features = false } # only needed to opt out of schema -k8s-openapi = { version = "0.15.0", default-features = false } +k8s-openapi = { version = "0.16.0", default-features = false } serde = { version = "1.0.130", features = ["derive"] } serde_json = "1.0.68" serde_yaml = "0.8.21" diff --git a/kube-client/Cargo.toml b/kube-client/Cargo.toml index fa447f02c..cbebb9cf3 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -73,7 +73,7 @@ tracing = { version = "0.1.29", features = ["log"], optional = true } hyper-openssl = { version = "0.9.2", optional = true } [dependencies.k8s-openapi] -version = "0.15.0" +version = "0.16.0" default-features = false features = [] @@ -86,6 +86,6 @@ tokio-test = "0.4.0" tower-test = "0.4.0" [dev-dependencies.k8s-openapi] -version = "0.15.0" +version = "0.16.0" default-features = false features = ["v1_24"] diff --git a/kube-core/Cargo.toml b/kube-core/Cargo.toml index 56b45d612..d17db96af 100644 --- a/kube-core/Cargo.toml +++ b/kube-core/Cargo.toml @@ -34,12 +34,12 @@ chrono = { version = "0.4.19", default-features = false, features = ["clock"] } schemars = { version = "0.8.6", optional = true } [dependencies.k8s-openapi] -version = "0.15.0" +version = "0.16.0" default-features = false features = [] [dev-dependencies.k8s-openapi] -version = "0.15.0" +version = "0.16.0" default-features = false features = ["v1_24"] diff --git a/kube-derive/Cargo.toml b/kube-derive/Cargo.toml index f196499f7..d5c27a4e6 100644 --- a/kube-derive/Cargo.toml +++ b/kube-derive/Cargo.toml @@ -26,7 +26,7 @@ proc-macro = true serde = { version = "1.0.130", features = ["derive"] } serde_yaml = "0.8.21" kube = { path = "../kube", default-features = false, version = "<1.0.0, >=0.61.0", features = ["derive"] } -k8s-openapi = { version = "0.15.0", default-features = false, features = ["v1_24"] } +k8s-openapi = { version = "0.16.0", default-features = false, features = ["v1_24"] } schemars = { version = "0.8.6", features = ["chrono"] } validator = { version = "0.16.0", features = ["derive"] } chrono = { version = "0.4.19", default-features = false } diff --git a/kube-runtime/Cargo.toml b/kube-runtime/Cargo.toml index 946315d3e..31a63a426 100644 --- a/kube-runtime/Cargo.toml +++ b/kube-runtime/Cargo.toml @@ -37,7 +37,7 @@ thiserror = "1.0.29" backoff = "0.4.0" [dependencies.k8s-openapi] -version = "0.15.0" +version = "0.16.0" default-features = false [dev-dependencies] @@ -48,6 +48,6 @@ rand = "0.8.0" schemars = "0.8.6" [dev-dependencies.k8s-openapi] -version = "0.15.0" +version = "0.16.0" default-features = false features = ["v1_24"] diff --git a/kube/Cargo.toml b/kube/Cargo.toml index c7e4d8225..dc5414376 100644 --- a/kube/Cargo.toml +++ b/kube/Cargo.toml @@ -44,7 +44,7 @@ kube-runtime = { path = "../kube-runtime", version = "=0.74.0", optional = true} # Not used directly, but required by resolver 2.0 to ensure that the k8s-openapi dependency # is considered part of the "deps" graph rather than just the "dev-deps" graph [dependencies.k8s-openapi] -version = "0.15.0" +version = "0.16.0" default-features = false [dev-dependencies] @@ -56,6 +56,6 @@ serde = { version = "1.0.130", features = ["derive"] } schemars = "0.8.6" [dev-dependencies.k8s-openapi] -version = "0.15.0" +version = "0.16.0" default-features = false features = ["v1_24"]