• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "tempfile"
3version = "3.2.0"
4authors = [
5  "Steven Allen <steven@stebalien.com>",
6  "The Rust Project Developers",
7  "Ashley Mannix <ashleymannix@live.com.au>",
8  "Jason White <jasonaw0@gmail.com>",
9]
10documentation = "https://docs.rs/tempfile"
11edition = "2018"
12exclude = ["/.travis.yml", "/appveyor.yml"]
13homepage = "http://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"
21rand = { version = "0.8", features = ["small_rng", "getrandom"], default_features = false }
22remove_dir_all = "0.5"
23
24[target.'cfg(any(unix, target_os = "wasi"))'.dependencies]
25libc = "0.2.27"
26
27[target.'cfg(windows)'.dependencies.winapi]
28version = "0.3"
29features = [
30    "fileapi",
31    "handleapi",
32    "winbase",
33]
34
35[target.'cfg(target_os = "redox")'.dependencies]
36redox_syscall = "0.2"
37
38[dev-dependencies]
39doc-comment = "0.3"
40
41[features]
42nightly = []
43