diff --git a/api/Cargo.lock b/api/Cargo.lock index 71f5e41d..430a66f2 100644 --- a/api/Cargo.lock +++ b/api/Cargo.lock @@ -115,6 +115,12 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" +[[package]] +name = "base64" +version = "0.21.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" + [[package]] name = "bitflags" version = "1.3.2" @@ -677,13 +683,13 @@ dependencies = [ name = "k8s-contract-repository" version = "0.0.0-development" dependencies = [ - "base64", + "base64 0.13.0", "clap", "custom_error", "env_logger", "hex", "itertools", - "k8s-openapi", + "k8s-openapi 0.18.0", "kube", "log", "openssl", @@ -705,7 +711,21 @@ version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2ae2c04fcee6b01b04e3aadd56bb418932c8e0a9d8a93f48bc68c6bdcdb559d" dependencies = [ - "base64", + "base64 0.13.0", + "bytes", + "chrono", + "serde", + "serde-value", + "serde_json", +] + +[[package]] +name = "k8s-openapi" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd990069640f9db34b3b0f7a1afc62a05ffaa3be9b66aa3c313f58346df7f788" +dependencies = [ + "base64 0.21.2", "bytes", "chrono", "http", @@ -722,7 +742,7 @@ version = "0.74.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a527a8001a61d8d470dab27ac650889938760c243903e7cd90faaf7c60a34bdd" dependencies = [ - "k8s-openapi", + "k8s-openapi 0.15.0", "kube-client", "kube-core", ] @@ -733,7 +753,7 @@ version = "0.74.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0d48f42df4e8342e9f488c4b97e3759d0042c4e7ab1a853cc285adb44409480" dependencies = [ - "base64", + "base64 0.13.0", "bytes", "chrono", "dirs-next", @@ -745,7 +765,7 @@ dependencies = [ "hyper-openssl", "hyper-timeout", "jsonpath_lib", - "k8s-openapi", + "k8s-openapi 0.15.0", "kube-core", "openssl", "pem", @@ -771,7 +791,7 @@ dependencies = [ "chrono", "form_urlencoded", "http", - "k8s-openapi", + "k8s-openapi 0.15.0", "once_cell", "serde", "serde_json", @@ -990,7 +1010,7 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e9a3b09a20e374558580a4914d3b7d89bd61b954a5a5e1dcbea98753addb1947" dependencies = [ - "base64", + "base64 0.13.0", ] [[package]] @@ -1281,7 +1301,7 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9" dependencies = [ - "base64", + "base64 0.13.0", ] [[package]] @@ -1668,7 +1688,7 @@ dependencies = [ "async-stream", "async-trait", "axum", - "base64", + "base64 0.13.0", "bytes", "futures-core", "futures-util", @@ -1724,7 +1744,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3864b1194b9b39ba01fc8f6640dc5554ded967ccaebdd8033341987f6c776431" dependencies = [ - "base64", + "base64 0.13.0", "bytes", "futures-core", "http", @@ -1762,7 +1782,7 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c530c8675c1dbf98facee631536fa116b5fb6382d7dd6dc1b118d970eafe3ba" dependencies = [ - "base64", + "base64 0.13.0", "bitflags", "bytes", "futures-core", diff --git a/api/Cargo.toml b/api/Cargo.toml index 31535d91..a671591b 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -9,7 +9,7 @@ custom_error = "1.9.2" env_logger = "0.9.0" hex = "0.4.3" itertools = "0.10.3" -k8s-openapi = { version = "0.15.0", features = ["v1_22"] } +k8s-openapi = { version = "0.18.0", features = ["v1_22"] } kube = "0.74.0" log = "0.4.17" openssl = "0.10.41"