43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
[package]
|
|
name = "tempfile"
|
|
version = "3.2.0"
|
|
authors = [
|
|
"Steven Allen <steven@stebalien.com>",
|
|
"The Rust Project Developers",
|
|
"Ashley Mannix <ashleymannix@live.com.au>",
|
|
"Jason White <jasonaw0@gmail.com>",
|
|
]
|
|
documentation = "https://docs.rs/tempfile"
|
|
edition = "2018"
|
|
exclude = ["/.travis.yml", "/appveyor.yml"]
|
|
homepage = "http://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"
|
|
rand = { version = "0.8", features = ["small_rng", "getrandom"], default_features = false }
|
|
remove_dir_all = "0.5"
|
|
|
|
[target.'cfg(any(unix, target_os = "wasi"))'.dependencies]
|
|
libc = "0.2.27"
|
|
|
|
[target.'cfg(windows)'.dependencies.winapi]
|
|
version = "0.3"
|
|
features = [
|
|
"fileapi",
|
|
"handleapi",
|
|
"winbase",
|
|
]
|
|
|
|
[target.'cfg(target_os = "redox")'.dependencies]
|
|
redox_syscall = "0.2"
|
|
|
|
[dev-dependencies]
|
|
doc-comment = "0.3"
|
|
|
|
[features]
|
|
nightly = []
|