From 4b543fd1c3851c5da13c77b4dca50871ac8cc201 Mon Sep 17 00:00:00 2001 From: David Bernard Date: Sat, 1 Feb 2020 14:25:37 +0100 Subject: [PATCH] :arrow_up: upgrade other dependencies because there are related: kube-rs, tokio. And as bonus upgrade serde_json, openssl, structopt --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 41a616c..e40ed39 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,17 +12,17 @@ homepage = "https://github.com/davidB/kubectl-view-allocations" exclude = ["/.github", "/.dependabot", ".gitignore"] [dependencies] -tokio = { version = "0.2.6", features = ["full"]} -kube = { version = "0.23.0", features = ["openapi"] } +tokio = { version = "0.2.11", features = ["full"]} +kube = { version = "0.24.0", features = ["openapi"] } k8s-openapi = { version = "0.7.1", features = ["v1_15"], default-features = false } log = "0.4.8" env_logger = "0.7.1" anyhow = "1.0.26" -serde_json = "1.0.44" +serde_json = "1.0.45" itertools = "0.8.2" prettytable-rs = { version = "0.8.0", default-features = false} -structopt = "0.3.7" -openssl = { version = "0.10.26", features = ["vendored"] } +structopt = "0.3.9" +openssl = { version = "0.10.27", features = ["vendored"] } [dev-dependencies] spectral = "0.6.0"