From afdaba2c358cb99f39f63bb5caf6d3839e64fc8f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 13 Feb 2024 17:21:31 +0000 Subject: [PATCH] fix(deps): update rust crate ahash to 0.8.8 --- Cargo.lock | 31 +++++++++---------------------- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c87b39a..9fef7f6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19,9 +19,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" [[package]] name = "ahash" -version = "0.8.6" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" +checksum = "42cd52102d3df161c77a887b608d7a4897d7cc112886a9537b738a887a03aaff" dependencies = [ "cfg-if", "getrandom", @@ -907,27 +907,13 @@ dependencies = [ "thiserror", ] -[[package]] -name = "k8s-openapi" -version = "0.20.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edc3606fd16aca7989db2f84bb25684d0270c6d6fa1dbcd0025af7b4130523a6" -dependencies = [ - "base64", - "bytes", - "chrono", - "serde", - "serde-value", - "serde_json", -] - [[package]] name = "k8s-openapi" version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "301f367a36090b7dfdaac248ee3ed4f14a6a8292e7bec0f1c5e6e2e1f181cd33" dependencies = [ - "base64 0.21.5", + "base64", "chrono", "serde", "serde-value", @@ -940,7 +926,7 @@ version = "0.88.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "462fe330a0617b276ec864c2255810adcdf519ecb6844253c54074b2086a97bc" dependencies = [ - "k8s-openapi 0.21.0", + "k8s-openapi", "kube-client", "kube-core", "kube-derive", @@ -965,7 +951,7 @@ dependencies = [ "hyper-rustls", "hyper-timeout", "jsonpath-rust", - "k8s-openapi 0.21.0", + "k8s-openapi", "kube-core", "pem", "pin-project", @@ -993,7 +979,7 @@ dependencies = [ "form_urlencoded", "http", "json-patch", - "k8s-openapi 0.21.0", + "k8s-openapi", "once_cell", "schemars", "serde", @@ -1027,7 +1013,7 @@ dependencies = [ "futures", "hashbrown 0.14.3", "json-patch", - "k8s-openapi 0.21.0", + "k8s-openapi", "kube-client", "parking_lot", "pin-project", @@ -2340,11 +2326,12 @@ dependencies = [ name = "warden-secret-operator" version = "0.0.0" dependencies = [ + "ahash", "config", "const_format", "env_logger", "futures", - "k8s-openapi 0.20.0", + "k8s-openapi", "kube", "log", "openssl", diff --git a/Cargo.toml b/Cargo.toml index 8c5e7c7..995879d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,5 +34,5 @@ warp = { version = "0.3", features = ["tls"]} tracing-subscriber = "0.3" openssl = { version = "0.10", features = ["vendored"]} -ahash = "0.8.7" # https://github.com/tkaitchuck/aHash/issues/200 Can be removed when kube-runtime uses the newer version +ahash = "0.8.8" # https://github.com/tkaitchuck/aHash/issues/200 Can be removed when kube-runtime uses the newer version [dev-dependencies]