Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rust 1.72 #2323

Merged
merged 2 commits into from Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/libcontainer/src/container/tenant_builder.rs
Expand Up @@ -165,7 +165,7 @@ impl TenantContainerBuilder {
}
}
_ => {
err_str_buf.extend(buf.into_iter());
err_str_buf.extend(buf);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion crates/libcontainer/src/syscall/linux.rs
Expand Up @@ -612,7 +612,7 @@ mod tests {
drop(file);

// The stdio fds should also be contained in the list of opened fds.
if !vec![0, 1, 2]
if ![0, 1, 2]
.iter()
.all(|&stdio_fd| open_fds.iter().any(|&open_fd| open_fd == stdio_fd))
{
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
@@ -1,3 +1,3 @@
[toolchain]
profile="default"
channel="1.71.0"
channel="1.72.0"