forked from ErichDonGubler/cargo-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (52 loc) · 1.19 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "cargo-script"
version = "0.2.9"
authors = ["Daniel Keep <[email protected]>"]
description = "A Cargo subcommand designed to let people quickly and easily run Rust \"scripts\" which can make use of Cargo's package ecosystem."
repository = "https://github.com/DanielKeep/cargo-script"
readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["cargo", "script"]
build = "build.rs"
exclude = [
"scripts/*",
".travis.yml",
]
edition = "2018"
[features]
default = ["suppress-cargo-output"]
suppress-cargo-output = ["chan"]
[dependencies]
chan = { version = "0.1.23", optional = true }
clap = "2.33.0"
env_logger = "0.7.1"
hoedown = "6.0.0"
itertools = "0.8.2"
lazy_static = "1.4.0"
log = "0.4.8"
open = "1.3.2"
regex = "1.3.1"
rustc-serialize = "0.3.24"
semver = "0.9.0"
time = "0.1.42"
toml = "0.5.5"
sha1 = "0.6.0"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.8", features = [
"combaseapi",
"knownfolders",
"minwindef",
"ntdef",
"shlobj",
"shtypes",
"winerror"
] }
winreg = "0.6.2"
[target.'cfg(unix)'.dependencies]
atty = "0.2.13"
[dev-dependencies]
gcc = "0.3.55"
scan-rules = "0.2.0"
tempdir = "0.3.7"
[profile.release]
lto = true