diff --git a/Cargo.lock b/Cargo.lock index 18572df8..f9bbe9d3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -285,6 +285,12 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +[[package]] +name = "base64" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" + [[package]] name = "bitflags" version = "1.3.2" @@ -1064,9 +1070,9 @@ dependencies = [ [[package]] name = "insta" -version = "1.35.1" +version = "1.36.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c985c1bef99cf13c58fade470483d81a2bfe846ebde60ed28cc2dddec2df9e2" +checksum = "a508bf83e6f6f2aa438588ae7ceb558a81030c5762cbfe838180a861cf5dc110" dependencies = [ "console", "lazy_static", @@ -1149,7 +1155,7 @@ version = "0.21.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "550f99d93aa4c2b25de527bce492d772caf5e21d7ac9bd4b508ba781c8d91e30" dependencies = [ - "base64", + "base64 0.21.7", "chrono", "schemars", "serde", @@ -1176,7 +1182,7 @@ version = "0.88.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7fe0d65dd6f3adba29cfb84f19dfe55449c7f6c35425f9d8294bec40313e0b64" dependencies = [ - "base64", + "base64 0.21.7", "bytes", "chrono", "either", @@ -1462,7 +1468,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1030c719b0ec2a2d25a5df729d6cff1acf3cc230bf766f4f97833591f7577b90" dependencies = [ - "base64", + "base64 0.21.7", "serde", ] @@ -1499,7 +1505,7 @@ version = "3.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3163d2912b7c3b52d651a055f2c7eec9ba5cd22d26ef75b8dd3a59980b185923" dependencies = [ - "base64", + "base64 0.21.7", "serde", ] @@ -1794,7 +1800,7 @@ version = "0.11.24" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6920094eb85afde5e4a138be3f2de8bbdf28000f0029e72c45025a56b042251" dependencies = [ - "base64", + "base64 0.21.7", "bytes", "encoding_rs", "futures-core", @@ -1906,7 +1912,7 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" dependencies = [ - "base64", + "base64 0.21.7", ] [[package]] @@ -1915,7 +1921,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35e4980fa29e4c4b212ffb3db068a564cbf560e51d3944b7c88bd8bf5bec64f4" dependencies = [ - "base64", + "base64 0.21.7", "rustls-pki-types", ] @@ -2201,7 +2207,7 @@ dependencies = [ name = "shulker-crds" version = "0.7.0" dependencies = [ - "base64", + "base64 0.22.0", "google-agones-crds", "k8s-openapi", "kube", @@ -2632,7 +2638,7 @@ dependencies = [ "async-stream", "async-trait", "axum 0.6.20", - "base64", + "base64 0.21.7", "bytes", "flate2", "h2 0.3.24", @@ -2680,7 +2686,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" dependencies = [ - "base64", + "base64 0.21.7", "bitflags 2.4.1", "bytes", "futures-core", diff --git a/Cargo.toml b/Cargo.toml index fdf74530..a2be738b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ futures-core = "0.3.30" hostname = "0.3.1" http = "0.2.11" hyper = "0.14.28" -insta = { version = "1.35.1", features = ["yaml", "toml", "redactions"] } +insta = { version = "1.36.0", features = ["yaml", "toml", "redactions"] } k8s-openapi = { version = "0.21.1", features = ["latest", "schemars"] } kube = { version = "0.88.1", features = ["runtime", "client", "derive" ] } lazy_static = "1.4.0"