#cargo-subcommand #cargo #cargo-check #testing-cargo #cargo-build #subcommand #testing

app cargo-minimal-versions

Cargo subcommand for proper use of -Z minimal-versions and -Z direct-minimal-versions

28 releases

0.1.27 Mar 19, 2024
0.1.25 Feb 10, 2024
0.1.23 Dec 16, 2023
0.1.21 Oct 27, 2023
0.1.0 Dec 28, 2021

#169 in Cargo plugins

Download history 32/week @ 2023-12-22 8/week @ 2023-12-29 14/week @ 2024-01-05 11/week @ 2024-01-12 25/week @ 2024-01-19 23/week @ 2024-01-26 13/week @ 2024-02-02 170/week @ 2024-02-09 187/week @ 2024-02-16 135/week @ 2024-02-23 322/week @ 2024-03-01 704/week @ 2024-03-08 239/week @ 2024-03-15 115/week @ 2024-03-22 88/week @ 2024-03-29 50/week @ 2024-04-05

511 downloads per month
Used in telegram_bots_api

Apache-2.0 OR MIT

66KB
1.5K SLoC

cargo-minimal-versions

crates.io license github actions

Cargo subcommand for proper use of -Z minimal-versions and -Z direct-minimal-versions.

Usage

Click to show a complete list of options
$ cargo minimal-versions --help
cargo-minimal-versions

Cargo subcommand for proper use of -Z minimal-versions and -Z direct-minimal-versions.

USAGE:
    cargo minimal-versions <CARGO_SUBCOMMAND> [OPTIONS] [CARGO_OPTIONS]

CARGO_SUBCOMMANDS:
    build
    check
    test
    ...

To check all crates with minimal version dependencies:

cargo minimal-versions check --workspace

Note: (If cargo-minimal-versions determined that it is necessary to do so for a correct minimal versions check) cargo-minimal-versions 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.

Normally, crates with publish = false do not need minimal versions check. You can skip these crates by using --ignore-private flag.

cargo minimal-versions check --workspace --ignore-private

If path dependencies exist, the above ways may miss the problem when you publish the crate (e.g., tokio-rs/tokio#4376, tokio-rs/tokio#4490)
By using --detach-path-deps flag, you can run minimal versions check with path fields removed from dependencies.

cargo minimal-versions check --workspace --ignore-private --detach-path-deps

--detach-path-deps (--detach-path-deps=all) flag removes all[^1] path fields by default. By using --detach-path-deps=skip-exact flag, you can skip the removal of path fields in dependencies with exact version requirements ("=<version>"). For example, this is useful for a pair of a proc-macro and a library that export it.

[^1]: To exactly, when neither version, git, nor path is specified, an error will occur, so we will remove the path field of all of dependencies for which the version or git URL is specified.

--direct (-Z direct-minimal-versions)

If there are dependencies that are incompatible with -Z minimum-versions, it is also reasonable to use -Z direct-minimal-versions, since it is hard to maintain -Z minimum-versions compatibility in such situations.

By using --direct flag, cargo-minimal-versions uses -Z direct-minimal-versions instead of -Z minimal-versions.

cargo minimal-versions check --direct

Note that using -Z direct-minimal-versions may miss some of the problems that can be found when using -Z minimal-versions. However, if there is a problem only in a particular version of a dependency, a problem that was missed when using -Z minimal-versions may be found by using -Z direct-minimal-versions (because the resolved dependency version is different).

Details

Using -Z minimal-versions in the usual way will not work properly in many cases. To use cargo check with -Z minimal-versions properly, you need to run at least three processes.

If I remember correctly, cargo check -Z minimal-versions doesn't really do anything. It needs to be separated into cargo update -Z minimal-versions and cargo check.

Also, dev-dependencies may raise version requirements. Ideally, remove them before run cargo update -Z minimal-versions. (Also, note that Cargo.lock is actually shared within the workspace. However as far as I know, there is no workaround for this yet.)

In addition, due to cargo's feature integration, it is not correct to run cargo check or cargo build with -p (--package) or --workspace (--all) or on virtual manifest. To handle this problem correctly, you need the workspace handling provided by subcommands such as cargo hack.

cargo-minimal-versions addresses most of these issues and makes it easy to run cargo commands with -Z minimal-versions.

See #1 and #6 for the remaining problems.

Installation

Prerequisites

cargo-minimal-versions requires nightly toolchain (to run cargo update -Z minimal-versions or cargo update -Z direct-minimal-versions) and cargo-hack (to run cargo check & cargo build proper):

rustup toolchain add nightly
cargo +stable install cargo-hack --locked

From source

cargo +stable install cargo-minimal-versions --locked

Compiler support: requires rustc 1.70+

cargo-minimal-versions is usually runnable with Cargo versions older than the Rust version required for installation (e.g., cargo +1.59 minimal-versions 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-minimal-versions
# 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-minimal-versions/releases/latest/download/cargo-minimal-versions-$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-hack
- uses: taiki-e/install-action@cargo-minimal-versions

Via Homebrew

You can install cargo-minimal-versions using Homebrew tap on macOS and Linux:

brew install taiki-e/tap/cargo-minimal-versions

Via Scoop (Windows)

You can install cargo-minimal-versions using Scoop:

scoop bucket add taiki-e https://github.com/taiki-e/scoop-bucket
scoop install cargo-minimal-versions

Via cargo-binstall

You can install cargo-minimal-versions using cargo-binstall:

cargo binstall cargo-minimal-versions
  • 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-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–13MB
~128K SLoC