Skip to content

Commit

Permalink
feat!: Update kube to 0.78 and k8s-openapi to 0.17 (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbg authored Jan 10, 2023
1 parent 39795e3 commit d246856
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ version = "0.18.0"
edition = "2018"
authors = ["Hendrik Maus <aidentailor@gmail.com>"]
description = "Leader election implementations for Kubernetes workloads"
repository = "https://github.com/hendrikmaus/kube-leader-election"
license = "MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
chrono = { version = "0.4", default-features = false }
kube = { version = "0.77", default-features = false, features = ["client"] }
k8s-openapi = { version = "0.16.0", default-features = false }
kube = { version = "0.78", default-features = false, features = ["client"] }
k8s-openapi = { version = "0.17", default-features = false }
serde = "1"
serde_json = "1"
thiserror = "1"
Expand All @@ -21,7 +20,7 @@ log = "0.4"
anyhow = "1"
async-std = { version = "1", features = ["attributes", "tokio1", "tokio02"] }
kube = "0.77"
k8s-openapi = { version = "0.16.0", default-features = false, features = ["v1_24"] }
k8s-openapi = { version = "0.17", default-features = false, features = ["v1_24"] }
env_logger = "0.9"
rand = "0.8"
cmd_lib = "1"

0 comments on commit d246856

Please sign in to comment.