1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-05-13 11:06:14 +02:00
* Rust 1.72.0

Signed-off-by: utam0k <k0ma@utam0k.jp>

* Fix lint errors from 1.72.0

Signed-off-by: utam0k <k0ma@utam0k.jp>

---------

Signed-off-by: utam0k <k0ma@utam0k.jp>
This commit is contained in:
Toru Komatsu 2023-08-30 00:50:15 +09:00 committed by GitHub
parent 70b2f91193
commit 09e67372a8
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -165,7 +165,7 @@ impl TenantContainerBuilder {
}
}
_ => {
err_str_buf.extend(buf.into_iter());
err_str_buf.extend(buf);
}
}
}

View File

@ -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))
{

View File

@ -1,3 +1,3 @@
[toolchain]
profile="default"
channel="1.71.0"
channel="1.72.0"