Release v1.0.0-rc45

This commit is contained in:
DuProcess
2026-07-17 20:13:08 -04:00
parent 9245c666af
commit ef0900e2df
3 changed files with 3 additions and 5 deletions
Generated
+1 -1
View File
@@ -436,7 +436,7 @@ dependencies = [
[[package]] [[package]]
name = "dosh" name = "dosh"
version = "1.0.0-rc44" version = "1.0.0-rc45"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"base64", "base64",
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "dosh" name = "dosh"
version = "1.0.0-rc44" version = "1.0.0-rc45"
edition = "2024" edition = "2024"
license = "MIT" license = "MIT"
+1 -3
View File
@@ -1027,9 +1027,7 @@ fn native_file_copy_recursive_round_trip() {
fs::create_dir_all(src.join("nested")).unwrap(); fs::create_dir_all(src.join("nested")).unwrap();
fs::write(src.join("root.txt"), b"root file\n").unwrap(); fs::write(src.join("root.txt"), b"root file\n").unwrap();
fs::write(src.join("nested/child.txt"), b"child file\n").unwrap(); fs::write(src.join("nested/child.txt"), b"child file\n").unwrap();
let large_payload: Vec<u8> = (0..128 * 1024) let large_payload: Vec<u8> = (0..128 * 1024).map(|index| (index % 251) as u8).collect();
.map(|index| (index % 251) as u8)
.collect();
fs::write(src.join("large.bin"), &large_payload).unwrap(); 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("root.txt", src.join("root-link")).unwrap();
std::os::unix::fs::symlink("nested/child.txt", src.join("child-link")).unwrap(); std::os::unix::fs::symlink("nested/child.txt", src.join("child-link")).unwrap();