diff --git a/Cargo.lock b/Cargo.lock index c28f577..cc13d1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" diff --git a/Cargo.toml b/Cargo.toml index 70a16b8..1788646 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,8 +12,8 @@ version = "0.14.1" anyhow = "1.0.95" delegate = "0.13.1" hyper-util = "0.1.10" -kube = { version = "0.98.0", default-features = false, features = ["derive"] } -k8s-openapi = { version = "0.24.0", features = [ "schemars" ] } +kube = { version = "0.98.0" } +k8s-openapi = { version = "0.24.0" } once_cell = "1.20.2" regex = { package = "regex-lite", version = "0.1.6" } schemars = "0.8.21" diff --git a/gateway-api/Cargo.toml b/gateway-api/Cargo.toml index 5151323..cee3107 100644 --- a/gateway-api/Cargo.toml +++ b/gateway-api/Cargo.toml @@ -25,8 +25,8 @@ serde.workspace = true serde_yaml.workspace = true [dev-dependencies] -k8s-openapi = { version = "0.24.0", features = [ "v1_31", "schemars" ] } -kube = { version = "0.98.0" } +k8s-openapi = { workspace = true, features = [ "v1_32", "schemars" ] } +kube = { workspace = true, features = ["derive"] } anyhow.workspace = true hyper-util.workspace = true @@ -35,4 +35,4 @@ tower.workspace = true uuid.workspace = true [package.metadata.docs.rs] -features = [ "k8s-openapi/v1_31" ] +features = [ "k8s-openapi/v1_32" ] diff --git a/gateway-api/examples/Cargo.toml b/gateway-api/examples/Cargo.toml index 76d52eb..e28efe8 100644 --- a/gateway-api/examples/Cargo.toml +++ b/gateway-api/examples/Cargo.toml @@ -25,7 +25,7 @@ tracing-subscriber.workspace = true uuid.workspace = true [features] -default = [ "k8s-openapi/v1_31" ] +default = [ "k8s-openapi/v1_32" ] [[bin]] name = "gep2257"