Releases: sunsided/async-tempfile-rs
Releases · sunsided/async-tempfile-rs
0.7.0
To add async-tempfile/0.7.0, run
cargo add [email protected]To install the latest version, run
cargo add async-tempfileChanges since 0.6.0
Full Changelog: 0.6.0...v0.7.0
Added
- Added the
drop_asyncfunctions to provide controlled andasyncdropping.
0.6.0
To add async-tempfile/0.6.0, run
cargo add [email protected]To install the latest version, run
cargo add async-tempfileChanges since 0.5.0
Full Changelog: 0.5.0...v0.6.0
Added
- #7: Added
TempDirfor automatically deleted temporary directories.
Internal
- Refactored temporary file name generation.
- Run tests on Linux, MacOS and Windows.
Pull requests
0.5.0
To add async-tempfile/0.5.0, run
cargo add [email protected]To install the latest version, run
cargo add async-tempfileChanges since 0.4.0
Changed
- The
newandnew_infunctions now do not rely on theuuidfeature anymore for the generation of temporary file names. - The
uuidfeature is now not enabled by default anymore.
Internal
- Some unnecessary heap allocations were removed.
0.4.0
async-tempfile/0.4.0
To use it in your project, add:
[dependencies]
async-tempfile = "0.4.0"Changes since 0.3.0
Added
- Added
uuidas a default crate feature and feature gated alluuidcrate related functionality. - Added the
new_with_nameandnew_with_name_inmethods to use a provided file name. - Added the
new_with_uuidandnew_with_uuid_inmethods to use a provided UUID as the file suffix. - The library now explicitly declares
allow(unsafe_code).