Skip to content

Commit

Permalink
Merge pull request #33 from wqld/chore/update-deps
Browse files Browse the repository at this point in the history
chore(agent): update kube/http/hyper requirement
  • Loading branch information
wqld authored Mar 27, 2024
2 parents 6ec6141 + fa623c5 commit 5416da5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ anyhow = "1"
libc = "0.2"
log = "0.4"
ipnet = "2.9.0"
kube = { version = "0.88.1", features = ["runtime", "derive"] }
kube = { version = "0.89.0", features = ["runtime", "client", "derive"] }
k8s-openapi = { version = "0.21.0", features = ["latest"] }
rsln = "0.0"
serde = "1.0"
Expand All @@ -42,9 +42,9 @@ tokio = { version = "1.25", features = [
tracing = "0.1"

[dev-dependencies]
http = "0.2"
http-body-util = "0.1.0"
hyper = "0.14"
http = "1"
http-body-util = "0.1.1"
hyper = "1"
reqwest = { version = "0.12", features = ["json"] }
tempfile = "3"
tower = { version = "0.4", features = ["util"] }
Expand Down
2 changes: 1 addition & 1 deletion agent/src/kube.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ impl Context {
mod tests {
use futures::pin_mut;
use http::{Request, Response};
use hyper::Body;
use kube::client::Body;
use kube::core::ObjectList;
use tower_test::mock;

Expand Down

0 comments on commit 5416da5

Please sign in to comment.