From 749211a8672fbea29c12a06522381bc80094db5b Mon Sep 17 00:00:00 2001 From: Stacky McStackface Date: Thu, 13 Jun 2024 08:24:18 +0000 Subject: [PATCH] chore(deps): update rust crate json-patch to v2 | datasource | package | from | to | | ---------- | ---------- | ----- | ----- | | crate | json-patch | 1.4.0 | 2.0.0 | --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 73bcf56e4..5af03f2eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ futures-util = "0.3.30" hyper = { version = "1.3.1", features = ["full"] } hyper-util = "0.1.3" # NOTE (@Techassi): We cannot bump to 2.0.0 because kube uses 1.X.X -json-patch = "1.4.0" +json-patch = "2.0.0" k8s-openapi = { version = "0.22.0", default-features = false, features = ["schemars", "v1_30"] } # We use rustls instead of openssl for easier portablitly, e.g. so that we can build stackablectl without the need to vendor (build from source) openssl kube = { version = "0.91.0", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "rustls-tls"] }