diff --git a/Cargo.lock b/Cargo.lock index 8ecffda..c8de567 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -436,7 +436,7 @@ dependencies = [ [[package]] name = "dosh" -version = "1.0.0-rc44" +version = "1.0.0-rc45" dependencies = [ "anyhow", "base64", diff --git a/Cargo.toml b/Cargo.toml index 9691581..6827a4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dosh" -version = "1.0.0-rc44" +version = "1.0.0-rc45" edition = "2024" license = "MIT" diff --git a/tests/integration_smoke.rs b/tests/integration_smoke.rs index 8bef037..edda348 100644 --- a/tests/integration_smoke.rs +++ b/tests/integration_smoke.rs @@ -1027,9 +1027,7 @@ fn native_file_copy_recursive_round_trip() { fs::create_dir_all(src.join("nested")).unwrap(); fs::write(src.join("root.txt"), b"root file\n").unwrap(); fs::write(src.join("nested/child.txt"), b"child file\n").unwrap(); - let large_payload: Vec = (0..128 * 1024) - .map(|index| (index % 251) as u8) - .collect(); + let large_payload: Vec = (0..128 * 1024).map(|index| (index % 251) as u8).collect(); fs::write(src.join("large.bin"), &large_payload).unwrap(); std::os::unix::fs::symlink("root.txt", src.join("root-link")).unwrap(); std::os::unix::fs::symlink("nested/child.txt", src.join("child-link")).unwrap();