forked from sagiegurari/cargo-make
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
68 lines (61 loc) · 1.44 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
63
64
65
66
67
68
[package]
name = "cargo-make"
version = "0.17.1"
authors = ["Sagie Gur-Ari <sagiegurari@gmail.com>"]
description = "Rust task runner and build tool."
license = "Apache-2.0"
documentation = "https://sagiegurari.github.io/cargo-make"
homepage = "https://sagiegurari.github.io/cargo-make"
repository = "https://github.com/sagiegurari/cargo-make.git"
readme = "README.md"
keywords = ["task", "build", "cargo", "plugin", "subcommand"]
categories = ["development-tools", "development-tools::cargo-plugins", "development-tools::build-utils", "development-tools::testing"]
include = [
"/benches/*",
"/docs/*",
"/examples/*",
"/src/*",
"/tests/*",
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/CHANGELOG.md",
"/Makefile.toml"
]
[lib]
name = "cli"
path = "src/lib/mod.rs"
[[bin]]
name = "cargo-make"
path = "src/main.rs"
[[bin]]
name = "makers"
path = "src/makers.rs"
[dependencies]
ci_info = "^0.4"
clap = "^2.32"
colored = "^1.7"
dirs = "^1.0"
fern = "^0.5"
glob = "^0.3"
indexmap = { version = "^1.0", features = ["serde-1"] }
log = "^0.4"
rand = "^0.6"
run_script = "^0.2"
rust_info = "^0.2"
semver = "^0.9"
serde = "^1.0"
serde_derive = "^1.0"
shell2batch = "^0.2"
toml = "^0.5"
[badges.travis-ci]
branch = "master"
repository = "sagiegurari/cargo-make"
[badges.appveyor]
repository = "sagiegurari/cargo-make"
service = "github"
branch = "master"
[badges.codecov]
branch = "master"
repository = "sagiegurari/cargo-make"
service = "github"