Skip to content

Commit 9966c46

Browse files
committed
Rename "dependency-report" to "outdated" in the cargo-make interface
1 parent 0c4080f commit 9966c46

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ With `cargo-make`, all of this project's commands will become available to you:
3131
| `cargo make format-ci` | Format (report only) every applicable file in the project |
3232
| `cargo make lint` | Lint (report only) every applicable file in the project |
3333
| `cargo make lint-watch` | Lint (report only) every applicable file in the project and re-lints whenever files change |
34-
| `cargo make dependency-report` | Show outdated dependencies in the project, if any |
34+
| `cargo make outdated` | Write a summary of outdated dependencies to STDOUT |
3535

3636
`cargo-make` will automatically fetch crates and toolchain components as needed when you run these
3737
commands. Between this and what is defined in `Cargo.toml`, you should never need to issue a

Makefile.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
[tasks.dependency-report]
2-
description = "Show outdated dependency versions."
1+
[tasks.outdated]
2+
description = "Write a summary of outdated dependencies to STDOUT."
33
env = { CARGO_MAKE_RUST_DEFAULT_TOOLCHAIN = "stable" } # See: https://github.com/sagiegurari/cargo-make/discussions/767
44
install_crate = "cargo-outdated"
55
command = "cargo"

0 commit comments

Comments
 (0)