From 94903a7f8f746458bf2ceccb1a282bc3a3558ef6 Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Fri, 23 Sep 2022 13:05:30 -0700 Subject: [PATCH] v0.7.0 (#24) * Update kube to v0.75 * Update k8s-openapi to v0.16 --- Cargo.toml | 22 +++++++++------------- integration/Cargo.toml | 11 +++-------- 2 files changed, 12 insertions(+), 21 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 655f2dc..ef3a07f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,9 @@ [workspace] -members = [ - ".", - "integration", -] +members = [".", "integration"] [package] name = "k8s-gateway-api" -version = "0.6.0" +version = "0.7.0" edition = "2021" license = "Apache-2.0" repository = "https://github.com/linkerd/k8s-gateway-api" @@ -19,18 +16,17 @@ default = [] experimental = [] [dependencies] -kube = { version = "0.74", default-features = false, features = ["derive"] } -k8s-openapi = { version = "0.15", features = ["schemars"] } +kube = { version = "0.75", default-features = false, features = ["derive"] } +k8s-openapi = { version = "0.16", features = ["schemars"] } schemars = { version = "0.8", features = ["derive"] } serde = { version = "1", features = ["derive"] } serde_json = "1" -[dev-dependencies] -k8s-openapi = { version = "0.15", default-features = false, features = ["v1_21"] } +[dev-dependencies.k8s-openapi] +version = "0.16" +default-features = false +features = ["v1_21"] [package.metadata.docs.rs] rustdoc-args = ["--cfg", "docsrs"] -features = [ - "experimental", - "k8s-openapi/v1_24", -] +features = ["experimental", "k8s-openapi/v1_25"] diff --git a/integration/Cargo.toml b/integration/Cargo.toml index 8f5b49b..f532cfd 100644 --- a/integration/Cargo.toml +++ b/integration/Cargo.toml @@ -6,17 +6,12 @@ license = "Apache-2.0" publish = false [dev-dependencies] -k8s-openapi = { version = "0.15", features = ["v1_21"] } +k8s-openapi = { version = "0.16", features = ["v1_21"] } tokio = { version = "1", features = ["macros", "rt"] } tracing = "0.1" k8s-gateway-api = { path = ".." } [dev-dependencies.kube] -version = "0.74" +version = "0.75" default-features = false -features = [ - "client", - "openssl-tls", - "runtime", - "ws", -] +features = ["client", "openssl-tls", "runtime", "ws"]