mirror of
https://github.com/sagiegurari/cargo-make
synced 2026-06-08 17:20:03 +00:00
c320053619
Bumps [cfg-if](https://github.com/rust-lang/cfg-if) from 1.0.3 to 1.0.4. - [Release notes](https://github.com/rust-lang/cfg-if/releases) - [Changelog](https://github.com/rust-lang/cfg-if/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/cfg-if/compare/v1.0.3...v1.0.4) --- updated-dependencies: - dependency-name: cfg-if dependency-version: 1.0.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
99 lines
2.1 KiB
TOML
99 lines
2.1 KiB
TOML
[package]
|
|
name = "cargo-make"
|
|
version = "0.37.24"
|
|
authors = ["Sagie Gur-Ari <sagiegurari@gmail.com>"]
|
|
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.19"
|
|
ci_info = "^0.14.14"
|
|
cliparser = "^0.1.2"
|
|
colored = "^3"
|
|
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.2"
|
|
hex = "0.4.3"
|
|
home = "^0.5"
|
|
ignore = "^0.4"
|
|
indexmap = { version = "^2", features = ["serde"] }
|
|
itertools = "^0.14"
|
|
lenient_semver = "^0.4.2"
|
|
log = "^0.4"
|
|
once_cell = "^1.21"
|
|
petgraph = "^0.8.1"
|
|
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"
|
|
sha2 = "0.10.9"
|
|
shell2batch = "^0.4.5"
|
|
strip-ansi-escapes = "^0.2"
|
|
strum_macros = "0.26.4"
|
|
toml = "^0.8"
|
|
|
|
[dev-dependencies]
|
|
cfg-if = "^1.0.4"
|
|
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"]
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|