From 16de64d6a91441b97936165b4006207b1e49fe5c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Nov 2020 22:58:16 +0000 Subject: [PATCH] Bump kube from 0.42.0 to 0.43.0 Bumps [kube](https://github.com/clux/kube-rs) from 0.42.0 to 0.43.0. - [Release notes](https://github.com/clux/kube-rs/releases) - [Changelog](https://github.com/clux/kube-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/clux/kube-rs/compare/0.42.0...0.43.0) Signed-off-by: dependabot[bot] --- Cargo.lock | 25 +++++++++++++++++++++++-- testsuite/cluster-test/Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ab3b931f75ce..f213b2686b72 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -154,6 +154,12 @@ version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034" +[[package]] +name = "array_tool" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f8cb5d814eb646a863c4f24978cff2880c4be96ad8cde2c0f0678732902e271" + [[package]] name = "arrayref" version = "0.3.6" @@ -2550,6 +2556,19 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "jsonpath_lib" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8727f6987896c010ec9add275f59de2ae418b672fafa77bc3673b4cee1f09ca" +dependencies = [ + "array_tool", + "env_logger 0.7.1", + "log", + "serde", + "serde_json", +] + [[package]] name = "k8s-openapi" version = "0.9.0" @@ -2582,9 +2601,9 @@ dependencies = [ [[package]] name = "kube" -version = "0.42.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4f52dbe2c0e7ca54e43f1bc7b77b916750e63d7694e5a18c09b11307acc6b9d" +checksum = "f3787d41d01ff816f93f1a73d20252f8a65887682206cfbf2d0f7d2d2b1b73fa" dependencies = [ "Inflector", "base64 0.12.3", @@ -2595,6 +2614,7 @@ dependencies = [ "futures 0.3.8", "futures-util", "http", + "jsonpath_lib", "k8s-openapi", "log", "openssl", @@ -5963,6 +5983,7 @@ version = "1.0.59" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dcac07dbffa1c65e7f816ab9eba78eb142c6d44410f4eeba1e26e4f5dfa56b95" dependencies = [ + "indexmap", "itoa", "ryu", "serde", diff --git a/testsuite/cluster-test/Cargo.toml b/testsuite/cluster-test/Cargo.toml index a2797e52a6e2..9662289b40c1 100644 --- a/testsuite/cluster-test/Cargo.toml +++ b/testsuite/cluster-test/Cargo.toml @@ -65,6 +65,6 @@ futures = "0.3.8" tokio = { version = "0.2.22", features = ["full"] } async-trait = "0.1.41" -kube = { version = "0.42.0" } +kube = { version = "0.43.0" } k8s-openapi = { version = "0.9.0", default-features = false, features = ["v1_15"] }