Skip to content

Commit

Permalink
deps: Update kube to v0.87.1 (#208)
Browse files Browse the repository at this point in the history
Update k8s-openapi to v0.20
  • Loading branch information
olix0r authored Dec 4, 2023
1 parent 7d0409f commit 14a20aa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ default-features = false
features = ["derive", "help", "env", "std"]

[dev-dependencies.k8s-openapi]
version = "0.19"
version = "0.20"
default-features = false
features = ["v1_27"]
features = ["latest"]

[dev-dependencies.kube]
version = "0.85"
version = "0.87.1"
default-features = false
features = ["client", "derive", "rustls-tls", "runtime"]

Expand Down
14 changes: 7 additions & 7 deletions kubert/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kubert"
version = "0.19.0"
version = "0.20.0"
edition = "2021"
license = "Apache-2.0"
description = "Kubernetes runtime helpers. Based on kube-rs."
Expand Down Expand Up @@ -181,23 +181,23 @@ features = ["derive", "std"]
# Not used directly, but required to ensure that the k8s-openapi dependency is considered part of
# the "deps" graph rather than just the "dev-deps" graph
[dependencies.k8s-openapi]
version = "0.19"
version = "0.20"
optional = true
default-features = false

[dependencies.kube-client]
version = "0.85"
version = "0.87.1"
optional = true
default-features = false
features = ["client", "config"]

[dependencies.kube-core]
version = "0.85"
version = "0.87.1"
optional = true
default-features = false

[dependencies.kube-runtime]
version = "0.85"
version = "0.87.1"
optional = true
default-features = false

Expand All @@ -210,7 +210,7 @@ features = ["env-filter", "fmt", "json", "smallvec", "tracing-log"]
# === Dev ===

[dev-dependencies]
kube = { version = "0.85", default-features = false, features = ["runtime"] }
kube = { version = "0.87.1", default-features = false, features = ["runtime"] }
tokio-stream = "0.1"
tokio-test = "0.4"
tracing-subscriber = { version = "0.3", features = ["ansi"] }
Expand All @@ -220,7 +220,7 @@ rcgen = { version = "0.11.2" }
tempfile = "3.8"

[dev-dependencies.k8s-openapi]
version = "0.19"
version = "0.20"
default-features = false
features = ["latest"]

Expand Down

0 comments on commit 14a20aa

Please sign in to comment.