From f453dea32a5e273481c55d593089e731bd8fbbea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 21:25:29 +0000 Subject: [PATCH 1/2] chore(deps): update hyper requirement from 0.14.27 to 1.0.1 Updates the requirements on [hyper](https://github.com/hyperium/hyper) to permit the latest version. - [Release notes](https://github.com/hyperium/hyper/releases) - [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/hyper/compare/v0.14.27...v1.0.1) --- updated-dependencies: - dependency-name: hyper dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4d37e3b..dfd7804 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ serde_yaml = "0.9.27" [dev-dependencies] anyhow = "1.0.75" -hyper = "0.14.27" +hyper = "1.0.1" kube = { version = "^0.87.1" } k8s-openapi = { version = "0.20.0" , features = ["v1_28"] } tokio = { version = "1.34.0", features = ["macros"] } From 45f27a437ee81c9db83e91345fe5891706ea6162 Mon Sep 17 00:00:00 2001 From: Shane Utt Date: Mon, 27 Nov 2023 11:35:16 -0500 Subject: [PATCH 2/2] chore: upgrade deps Signed-off-by: Shane Utt --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dfd7804..a7411f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" kube = { version = "^0.87.1", default-features = false, features = ["derive"] } k8s-openapi = { version = "0.20.0", features = ["v1_28"] } schemars = "0.8.16" -serde = { version = "1.0.192", features = ["derive"] } +serde = { version = "1.0.193", features = ["derive"] } serde_json = "1.0.108" serde_yaml = "0.9.27" @@ -25,4 +25,4 @@ kube = { version = "^0.87.1" } k8s-openapi = { version = "0.20.0" , features = ["v1_28"] } tokio = { version = "1.34.0", features = ["macros"] } tower = "0.4.13" -uuid = { version = "1.5.0", features = ["v4", "fast-rng"] } +uuid = { version = "1.6.1", features = ["v4", "fast-rng"] }