1 | [package] |
2 | name = "tempfile" |
3 | version = "3.10.1" |
4 | authors = [ |
5 | "Steven Allen <steven@stebalien.com>" , |
6 | "The Rust Project Developers" , |
7 | "Ashley Mannix <ashleymannix@live.com.au>" , |
8 | "Jason White <me@jasonwhite.io>" , |
9 | ] |
10 | documentation = "https://docs.rs/tempfile" |
11 | edition = "2021" |
12 | rust-version = "1.63" |
13 | homepage = "https://stebalien.com/projects/tempfile-rs/" |
14 | keywords = ["tempfile" , "tmpfile" , "filesystem" ] |
15 | license = "MIT OR Apache-2.0" |
16 | repository = "https://github.com/Stebalien/tempfile" |
17 | description = "A library for managing temporary files and directories." |
18 | |
19 | [dependencies] |
20 | cfg-if = "1" |
21 | fastrand = "2.0.1" |
22 | |
23 | [target.'cfg(any(unix, target_os = "wasi"))'.dependencies] |
24 | rustix = { version = "0.38.31" , features = ["fs" ] } |
25 | |
26 | [target.'cfg(windows)'.dependencies.windows-sys] |
27 | version = "0.52" |
28 | features = [ |
29 | "Win32_Storage_FileSystem" , |
30 | "Win32_Foundation" , |
31 | ] |
32 | |
33 | [dev-dependencies] |
34 | doc-comment = "0.3" |
35 | |
36 | [features] |
37 | nightly = [] |
38 | |