From fb2f034041ff641a2e120869c9a85d9b2f0bc54f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 22:18:35 +0000 Subject: [PATCH] Update jsonpath-rust requirement from 0.4.0 to 0.5.0 Updates the requirements on [jsonpath-rust](https://github.com/besok/jsonpath-rust) to permit the latest version. - [Changelog](https://github.com/besok/jsonpath-rust/blob/main/CHANGELOG.md) - [Commits](https://github.com/besok/jsonpath-rust/compare/v0.4.0...v0.5) --- updated-dependencies: - dependency-name: jsonpath-rust dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/Cargo.toml | 2 +- kube-client/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 760003f2a..baf14a47f 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -30,7 +30,7 @@ assert-json-diff = "2.0.1" garde = { version = "0.18.0", default-features = false, features = ["derive"] } anyhow = "1.0.44" futures = "0.3.17" -jsonpath-rust = "0.4.0" +jsonpath-rust = "0.5.0" kube = { path = "../kube", version = "^0.88.1", default-features = false, features = ["admission"] } kube-derive = { path = "../kube-derive", version = "^0.88.1", default-features = false } # only needed to opt out of schema k8s-openapi = { version = "0.21.0", default-features = false } diff --git a/kube-client/Cargo.toml b/kube-client/Cargo.toml index 078fcbcca..7656bd2e8 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -57,7 +57,7 @@ rustls-pemfile = { version = "1.0.0", optional = true } bytes = { version = "1.1.0", optional = true } tokio = { version = "1.14.0", features = ["time", "signal", "sync"], optional = true } kube-core = { path = "../kube-core", version = "=0.88.1" } -jsonpath-rust = { version = "0.4.0", optional = true } +jsonpath-rust = { version = "0.5.0", optional = true } tokio-util = { version = "0.7.0", optional = true, features = ["io", "codec"] } hyper = { version = "0.14.13", optional = true, features = ["client", "http1", "stream", "tcp"] } hyper-rustls = { version = "0.24.0", optional = true }