forked from DanielKeep/cargo-script
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
51 lines (43 loc) · 1.18 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
[package]
name = "cargo-eval"
version = "0.1.0 "
authors = ["Daniel Keep <[email protected]>",
"Markus Reiter <[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/reitermarkus/cargo-eval"
readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["cargo", "script", "eval"]
edition = "2018"
exclude = [
"scripts/*",
".travis.yml",
]
[features]
default = ["suppress-cargo-output"]
suppress-cargo-output = ["chan"]
[dependencies]
chan = { version = "0.1.23", optional = true }
clap = { version = "2.33", default-features = false, features = ["color", "vec_map"] }
env_logger = "0.7.1"
pulldown-cmark = "0.7.0"
lazy_static = "1.4.0"
log = "0.4.8"
open = "1.4.0"
regex = "1.3.5"
shaman = "0.1.0"
dirs = "2.0.2"
toml = "0.5.6"
serde = { version = "1.0.105", features = ["derive"] }
serde_json = "1.0.48"
[target.'cfg(windows)'.dependencies]
itertools = "0.9.0"
winreg = "0.7.0"
[target.'cfg(unix)'.dependencies]
atty = "0.2.14"
[dev-dependencies]
gcc = "0.3.55"
scan-rules = "0.2.0"
tempdir = "0.3.7"
[profile.release]
lto = true