coreutils/src/uu/mktemp/Cargo.toml

27 lines
818 B
TOML
Raw Normal View History

2016-01-03 10:10:47 +00:00
[package]
name = "uu_mktemp"
2016-01-03 10:10:47 +00:00
version = "0.0.1"
authors = ["uutils developers"]
license = "MIT"
description = "mktemp ~ (uutils) create and display a temporary file or directory from TEMPLATE"
homepage = "https://github.com/uutils/coreutils"
repository = "https://github.com/uutils/coreutils/tree/master/src/uu/mktemp"
keywords = ["coreutils", "uutils", "cross-platform", "cli", "utility"]
categories = ["command-line-utilities"]
edition = "2018"
2016-01-03 10:10:47 +00:00
[lib]
path = "src/mktemp.rs"
2016-01-03 10:10:47 +00:00
[dependencies]
getopts = "0.2.18"
rand = "0.5"
2017-07-15 19:03:43 +00:00
tempfile = "2.1.5"
uucore = { version="0.0.4", package="uucore", git="https://github.com/uutils/uucore.git", branch="canary" }
uucore_procs = { version="0.0.4", package="uucore_procs", git="https://github.com/uutils/uucore.git", branch="canary" }
2016-05-22 20:05:10 +00:00
[[bin]]
name = "mktemp"
path = "src/main.rs"