From 9aa7e54bff8d091bce307a998674ecf0dc8bacda Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 4 Nov 2022 07:28:50 +0000 Subject: [PATCH] Update Rust crate kube to 0.76.0 (#498) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [kube](https://togithub.com/kube-rs/kube) | dependencies | minor | `0.75.0` -> `0.76.0` | --- ### Configuration 📅 **Schedule**: Branch creation - "after 5:00 and before 6:00 every weekday" in timezone Europe/Berlin, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/stackabletech/operator-rs). Co-authored-by: Sebastian Bernauer --- Cargo.toml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0599930ee..c02230304 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ either = "1.8.0" futures = "0.3.23" json-patch = "0.2.6" k8s-openapi = { version = "0.16.0", default-features = false, features = ["schemars", "v1_24"] } -kube = { version = "0.75.0", features = ["jsonpatch", "runtime", "derive"] } +kube = { version = "0.76.0", features = ["jsonpatch", "runtime", "derive"] } lazy_static = "1.4.0" product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.4.0" } rand = "0.8.5" @@ -40,10 +40,5 @@ snafu = "0.7.1" rstest = "0.15.0" tempfile = "3.3.0" -[features] -default = ["native-tls"] -native-tls = ["kube/native-tls"] -rustls-tls = ["kube/rustls-tls"] - [workspace] members = ["stackable-operator-derive"]