#cargo #cargo-subcommand #testing #subcommand

app cargo-no-dev-deps

Cargo subcommand for running cargo without dev-dependencies

14 releases

0.2.12 Mar 10, 2024
0.2.10 Jan 24, 2024
0.2.9 Dec 16, 2023
0.2.7 Sep 11, 2023
0.2.2 Feb 28, 2023

#336 in Cargo plugins

Download history 5/week @ 2024-01-19 1/week @ 2024-01-26 13/week @ 2024-02-16 38/week @ 2024-02-23 11/week @ 2024-03-01 181/week @ 2024-03-08 16/week @ 2024-03-15 2/week @ 2024-03-22 45/week @ 2024-03-29 18/week @ 2024-04-05

65 downloads per month

Apache-2.0 OR MIT

51KB
1K SLoC

cargo-no-dev-deps

crates.io license github actions

Cargo subcommand for running cargo without dev-dependencies.

This is an extraction of the cargo-hack's --no-dev-deps flag to be used as a stand-alone cargo subcommand.

Usage

$ cargo no-dev-deps --help
cargo-no-dev-deps

Cargo subcommand for running cargo without dev-dependencies.

USAGE:
    cargo no-dev-deps <CARGO_SUBCOMMAND> [OPTIONS] [CARGO_OPTIONS]

OPTIONS:
        --no-private    Perform without `publish = false` crates

CARGO_SUBCOMMANDS:
    build
    check
    ...

To run cargo check without dev-deps:

cargo no-dev-deps check

Note: cargo-no-dev-deps modifies Cargo.toml and Cargo.lock while running and restores it when finished. Any changes you made to those files during running will not be preserved.

If you want exclude publish = false crates, you can exclude these crates by using --no-private flag.

cargo no-dev-deps --no-private check

This flag is more powerful than cargo-hack's --ignore-private flag, because this also prevents private crates from affecting lockfile and metadata.

Installation

From source

cargo +stable install cargo-no-dev-deps --locked

Compiler support: requires rustc 1.70+

cargo-no-dev-deps is usually runnable with Cargo versions older than the Rust version required for installation (e.g., cargo +1.59 no-dev-deps check).

From prebuilt binaries

You can download prebuilt binaries from the Release page. Prebuilt binaries are available for macOS, Linux (gnu and musl), Windows (static executable), and FreeBSD.

Example of script to download cargo-no-dev-deps
# Get host target
host=$(rustc -Vv | grep host | sed 's/host: //')
# Download binary and install to $HOME/.cargo/bin
curl --proto '=https' --tlsv1.2 -fsSL https://github.com/taiki-e/cargo-no-dev-deps/releases/latest/download/cargo-no-dev-deps-$host.tar.gz | tar xzf - -C "$HOME/.cargo/bin"

On GitHub Actions

You can use taiki-e/install-action to install prebuilt binaries on Linux, macOS, and Windows. This makes the installation faster and may avoid the impact of problems caused by upstream changes.

- uses: taiki-e/install-action@cargo-no-dev-deps

Via Homebrew

You can install cargo-no-dev-deps using Homebrew tap on macOS and Linux:

brew install taiki-e/tap/cargo-no-dev-deps

Via Scoop (Windows)

You can install cargo-no-dev-deps using Scoop:

scoop bucket add taiki-e https://github.com/taiki-e/scoop-bucket
scoop install cargo-no-dev-deps

Via cargo-binstall

You can install cargo-no-dev-deps using cargo-binstall:

cargo binstall cargo-no-dev-deps
  • cargo-hack: Cargo subcommand to provide various options useful for testing and continuous integration.
  • cargo-llvm-cov: Cargo subcommand to easily use LLVM source-based code coverage.
  • cargo-minimal-versions: Cargo subcommand for proper use of -Z minimal-versions.
  • cargo-config2: Library to load and resolve Cargo configuration.

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~3–11MB
~120K SLoC