Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
Signed-off-by: Shane Utt <[email protected]>
  • Loading branch information
shaneutt committed Nov 13, 2023
1 parent 7824d3d commit 76cf47d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 76cf47d

Please sign in to comment.