| [package] |
| name = "tempfile" |
| version = "3.12.0" |
| authors = [ |
| "Steven Allen <[email protected]>", |
| "The Rust Project Developers", |
| "Ashley Mannix <[email protected]>", |
| "Jason White <[email protected]>", |
| ] |
| documentation = "https://docs.rs/tempfile" |
| edition = "2021" |
| rust-version = "1.63" |
| homepage = "https://stebalien.com/projects/tempfile-rs/" |
| keywords = ["tempfile", "tmpfile", "filesystem"] |
| license = "MIT OR Apache-2.0" |
| repository = "https://github.com/Stebalien/tempfile" |
| description = "A library for managing temporary files and directories." |
| |
| [dependencies] |
| cfg-if = "1" |
| fastrand = "2.0.1" |
| # Not available in stdlib until 1.70, but we support 1.63 to support Debian stable. |
| once_cell = { version = "1.19.0", default-features = false, features = ["std"] } |
| |
| [target.'cfg(any(unix, target_os = "wasi"))'.dependencies] |
| rustix = { version = "0.38.31", features = ["fs"] } |
| |
| [target.'cfg(windows)'.dependencies.windows-sys] |
| version = "0.59" |
| features = [ |
| "Win32_Storage_FileSystem", |
| "Win32_Foundation", |
| ] |
| |
| [dev-dependencies] |
| doc-comment = "0.3" |
| |
| [features] |
| nightly = [] |