File tree Expand file tree Collapse file tree 3 files changed +451
-0
lines changed Expand file tree Collapse file tree 3 files changed +451
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ This project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
5
6
6
## Unreleased
7
7
8
+ ### Added
9
+
10
+ - [ #7 ] ( https://github.com/sunsided/async-tempfile-rs/pull/7 ) :
11
+ Added ` TempDir ` for automatically deleted temporary directories.
12
+
8
13
### Internal
9
14
10
15
- Refactored temporary file name generation.
Original file line number Diff line number Diff line change 34
34
35
35
mod errors;
36
36
mod random_name;
37
+ mod tempdir;
37
38
mod tempfile;
38
39
39
40
pub use errors:: Error ;
40
41
#[ cfg( not( feature = "uuid" ) ) ]
41
42
pub ( crate ) use random_name:: RandomName ;
42
43
use std:: fmt:: Debug ;
44
+ pub use tempdir:: TempDir ;
43
45
pub use tempfile:: TempFile ;
44
46
45
47
/// Determines the ownership of a temporary file or directory.
You can’t perform that action at this time.
0 commit comments