Skip to content

Commit

Permalink
chore(deps): update kube requirement from ^0.85.0 to ^0.87.1 (#22)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Shane Utt <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Shane Utt <[email protected]>
  • Loading branch information
dependabot[bot] and shaneutt authored Nov 13, 2023
1 parent 9d27a65 commit ea4e109
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ repository = "https://github.com/kube-rs/gateway-api-rs"
edition = "2021"

[dependencies]
kube = { version = "^0.85.0", 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"
kube = { version = "^0.87.1", default-features = false, features = ["derive"] }
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.85.0" }
k8s-openapi = { version = "0.19.0" , features = ["v1_27"] }
tokio = { version = "1.32.0", features = ["macros"] }
kube = { version = "^0.87.1" }
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 ea4e109

Please sign in to comment.