forked from Stebalien/tempfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (36 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[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 = []