From 76cf47db228b0ae98e8783d4c10811892f47c72b Mon Sep 17 00:00:00 2001 From: Shane Utt Date: Mon, 13 Nov 2023 16:31:01 -0500 Subject: [PATCH] chore: upgrade deps Signed-off-by: Shane Utt --- Cargo.toml | 16 ++++++++-------- src/lib.rs | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 649feac..c53a42c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,17 +12,17 @@ edition = "2021" [dependencies] kube = { version = "^0.87.1", default-features = false, features = ["derive"] } -k8s-openapi = { version = "0.19.0" } -schemars = "0.8.13" -serde = { version = "1.0.188", features = ["derive"] } -serde_json = "1.0.106" -serde_yaml = "0.9.25" +k8s-openapi = { version = "0.20.0" } +schemars = "0.8.16" +serde = { version = "1.0.192", features = ["derive"] } +serde_json = "1.0.108" +serde_yaml = "0.9.27" [dev-dependencies] anyhow = "1.0.75" hyper = "0.14.27" kube = { version = "^0.87.1" } -k8s-openapi = { version = "0.19.0" , features = ["v1_27"] } -tokio = { version = "1.32.0", features = ["macros"] } +k8s-openapi = { version = "0.20.0" , features = ["v1_27"] } +tokio = { version = "1.34.0", features = ["macros"] } tower = "0.4.13" -uuid = { version = "1.4.1", features = ["v4", "fast-rng"] } +uuid = { version = "1.5.0", features = ["v4", "fast-rng"] } diff --git a/src/lib.rs b/src/lib.rs index c7c855f..100663f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -100,7 +100,7 @@ mod tests { let service = ServiceBuilder::new() .layer(config.base_uri_layer()) .option_layer(config.auth_layer()?) - .service(hyper::Client::builder().build(config.openssl_https_connector()?)); + .service(hyper::Client::builder().build(config.rustls_https_connector()?)); let client = kube::Client::new(service, config.default_namespace);