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