1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2021"
14rust-version = "1.63"
15name = "tempfile"
16version = "3.12.0"
17authors = [
18    "Steven Allen <[email protected]>",
19    "The Rust Project Developers",
20    "Ashley Mannix <[email protected]>",
21    "Jason White <[email protected]>",
22]
23build = false
24autobins = false
25autoexamples = false
26autotests = false
27autobenches = false
28description = "A library for managing temporary files and directories."
29homepage = "https://stebalien.com/projects/tempfile-rs/"
30documentation = "https://docs.rs/tempfile"
31readme = "README.md"
32keywords = [
33    "tempfile",
34    "tmpfile",
35    "filesystem",
36]
37license = "MIT OR Apache-2.0"
38repository = "https://github.com/Stebalien/tempfile"
39
40[lib]
41name = "tempfile"
42path = "src/lib.rs"
43
44[[test]]
45name = "env"
46path = "tests/env.rs"
47
48[[test]]
49name = "namedtempfile"
50path = "tests/namedtempfile.rs"
51
52[[test]]
53name = "spooled"
54path = "tests/spooled.rs"
55
56[[test]]
57name = "tempdir"
58path = "tests/tempdir.rs"
59
60[[test]]
61name = "tempfile"
62path = "tests/tempfile.rs"
63
64[dependencies.cfg-if]
65version = "1"
66
67[dependencies.fastrand]
68version = "2.0.1"
69
70[dependencies.once_cell]
71version = "1.19.0"
72features = ["std"]
73default-features = false
74
75[dev-dependencies.doc-comment]
76version = "0.3"
77
78[features]
79nightly = []
80
81[target.'cfg(any(unix, target_os = "wasi"))'.dependencies.rustix]
82version = "0.38.31"
83features = ["fs"]
84
85[target."cfg(windows)".dependencies.windows-sys]
86version = "0.59"
87features = [
88    "Win32_Storage_FileSystem",
89    "Win32_Foundation",
90]
91