-
Notifications
You must be signed in to change notification settings - Fork 126
/
Cargo.toml
93 lines (86 loc) · 1.99 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "cargo-make"
version = "0.37.23"
authors = ["Sagie Gur-Ari <[email protected]>"]
description = "Rust task runner and build tool."
license = "Apache-2.0"
edition = "2021"
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 = [
"command-line-utilities",
"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",
"/extra/shell/*",
]
[lib]
name = "cli"
path = "src/lib/mod.rs"
[[bin]]
name = "cargo-make"
path = "src/main.rs"
[[bin]]
name = "makers"
path = "src/makers.rs"
[dependencies]
cargo_metadata = "^0.18"
ci_info = "^0.14.14"
cliparser = "^0.1.2"
colored = "^2"
ctrlc = "^3"
dirs-next = "^2"
duckscript = "^0.10"
duckscriptsdk = { version = "^0.11.1", default-features = false }
envmnt = "^0.10.4"
fern = "^0.7"
fsio = { version = "^0.4", features = ["temp-path"] }
git_info = "^0.1.3"
glob = "^0.3.1"
home = "^0.5"
ignore = "^0.4"
indexmap = { version = "^2", features = ["serde"] }
itertools = "^0.13"
lenient_semver = "^0.4.2"
log = "^0.4"
md5 = "^0.7"
once_cell = "^1.20.2"
petgraph = "^0.6.5"
regex = "^1.11"
run_script = "^0.11"
rust_info = "^0.3.3"
semver = "^1"
serde = "^1"
serde_derive = "^1"
serde_ignored = "^0.1"
serde_json = "^1"
shell2batch = "^0.4.5"
strip-ansi-escapes = "^0.2"
strum_macros = "0.26.4"
toml = "^0.8"
[dev-dependencies]
cfg-if = "^1.0.0"
expect-test = "^1"
[target.'cfg(windows)'.dependencies]
nu-ansi-term = "^0.50"
[features]
tls-rustls = ["duckscriptsdk/tls-rustls"]
tls-native = ["duckscriptsdk/tls-native"]
tls = ["tls-rustls"] # alias for backward compatibility
default = ["tls-rustls"]