Skip to content

Commit 1b4b8c6

Browse files
Merge branch 'main' into ssa-x-kubernetes-rules-add
2 parents 5d86114 + 6480ccd commit 1b4b8c6

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ hyper-openssl = "0.10.2"
5757
hyper-rustls = { version = "0.27.1", default-features = false }
5858
hyper-socks2 = { version = "0.9.0", default-features = false }
5959
hyper-timeout = "0.5.1"
60-
hyper-util = "0.1.9"
60+
hyper-util = "0.1.11"
6161
json-patch = "4"
6262
jsonpath-rust = "0.7.3"
6363
k8s-openapi = { version = "0.24.0", default-features = false }

deny.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ allow = [
3636
exceptions = [
3737
# Pulled in via hyper-rustls when using the webpki-roots feature,
3838
# which is off by default.
39-
{ allow = ["MPL-2.0"], name = "webpki-roots" },
39+
{ allow = ["CDLA-Permissive-2.0"], crate = "webpki-roots" },
4040
]
4141

4242
[sources]

kube-runtime/src/reflector/store.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,8 +251,7 @@ where
251251
{
252252
self.store
253253
.read()
254-
.iter()
255-
.map(|(_, k)| k)
254+
.values()
256255
.find(|k| predicate(k.as_ref()))
257256
.cloned()
258257
}

0 commit comments

Comments
 (0)