Skip to content

Commit

Permalink
Merge pull request #41 from wqld/dependabot/cargo/nix-0.29.0
Browse files Browse the repository at this point in the history
chore(deps): update nix requirement from 0.28.0 to 0.29.0
  • Loading branch information
wqld authored Jun 24, 2024
2 parents 506ea57 + 9296e0c commit 5e12948
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions agent/src/kube.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,9 @@ impl Context {
Ok(())
}

async fn exec_command_in_pod<I: Debug, T>(
pods: &Api<Pod>,
name: &str,
command: I,
) -> Result<String>
async fn exec_command_in_pod<I, T>(pods: &Api<Pod>, name: &str, command: I) -> Result<String>
where
I: IntoIterator<Item = T>,
I: IntoIterator<Item = T> + Debug,
T: Into<String>,
{
let attached = pods
Expand Down
2 changes: 1 addition & 1 deletion cni/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ serde = "1.0"
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
nix = { version = "0.28.0", features = ["sched"] }
nix = { version = "0.29.0", features = ["sched"] }

0 comments on commit 5e12948

Please sign in to comment.