23 releases
Uses new Rust 2024
| 0.7.0 | Jun 1, 2025 |
|---|---|
| 0.6.0 | Feb 25, 2025 |
| 0.5.3 | Feb 21, 2025 |
| 0.5.2 | Nov 28, 2024 |
| 0.1.0 | Jul 3, 2021 |
#309 in Filesystem
1,814 downloads per month
Used in journal-forwarder
15KB
212 lines
Write Atomic
Write Atomic was originally a stripped-down remake of tempfile-fast, but with the 3.4.0 release of tempfile, it has largely been mooted.
(tempfile now supports Linux optimizations like O_TMPFILE natively.)
That said, one might still enjoy the ergonomic single-shot nature of Write Atomic's write_file and copy_file methods, as well as their permission/ownership-syncing behaviors, and so it lives on!
Examples
// One line is all it takes:
write_atomic::write_file("/path/to/my-file.txt", b"Some data!").unwrap();
Installation
Add write_atomic to your dependencies in Cargo.toml, like:
[dependencies]
write_atomic = "0.6.*"
Dependencies
~2–15MB
~145K SLoC