diff --git a/Cargo.lock b/Cargo.lock index 56be8b8..d1cbf23 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" @@ -646,7 +646,7 @@ dependencies = [ "env_logger", "futures", "json-patch 4.0.0", - "k8s-openapi", + "k8s-openapi 0.24.0", "kube", "log", "rand 0.9.0", @@ -1051,6 +1051,19 @@ name = "k8s-openapi" version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c8847402328d8301354c94d605481f25a6bdc1ed65471fd96af8eca71141b13" +dependencies = [ + "base64 0.22.0", + "chrono", + "serde", + "serde-value", + "serde_json", +] + +[[package]] +name = "k8s-openapi" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c75b990324f09bef15e791606b7b7a296d02fc88a344f6eba9390970a870ad5" dependencies = [ "base64 0.22.0", "chrono", @@ -1066,7 +1079,7 @@ version = "0.96.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "efffeb3df0bd4ef3e5d65044573499c0e4889b988070b08c50b25b1329289a1f" dependencies = [ - "k8s-openapi", + "k8s-openapi 0.23.0", "kube-client", "kube-core", "kube-derive", @@ -1094,7 +1107,7 @@ dependencies = [ "hyper-timeout", "hyper-util", "jsonpath-rust", - "k8s-openapi", + "k8s-openapi 0.23.0", "kube-core", "pem", "rustls", @@ -1121,7 +1134,7 @@ dependencies = [ "form_urlencoded", "http", "json-patch 2.0.0", - "k8s-openapi", + "k8s-openapi 0.23.0", "schemars", "serde", "serde-value", @@ -1158,7 +1171,7 @@ dependencies = [ "hashbrown", "json-patch 2.0.0", "jsonptr 0.4.7", - "k8s-openapi", + "k8s-openapi 0.23.0", "kube-client", "parking_lot", "pin-project", diff --git a/Cargo.toml b/Cargo.toml index 8b978ba..545fea6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] env_logger = "0.11.6" -k8s-openapi = { version = "0.23.0", features = ["latest", "schemars"] } +k8s-openapi = { version = "0.24.0", features = ["latest", "schemars"] } kube = { version = "0.96.0", features = ["runtime", "derive", "unstable-runtime"] } log = "0.4.26" reqwest = { version = "0.12.9", features = ["json"] }