chrome-for-testing-manager 0.7.0

Programmatic management of chrome-for-testing installations.
Documentation
# Lists all available commands.
default:
  just --list

# Install tools required by other recipes.
install-tools:
    rustup toolchain add nightly
    cargo +stable install cargo-hack --locked
    cargo +stable install cargo-minimal-versions --locked
    cargo +stable install cargo-msrv --locked

# Check if the current dependency version bounds are sufficient.
minimal-versions:
    cargo minimal-versions check --workspace --direct

# Find the minimum supported rust version.
msrv:
    cargo msrv find

# Lint the code.
clippy:
    cargo clippy --all --all-features -- -W clippy::pedantic

# Update all deps; sort all Cargo.toml deps; format, check and lint all code; run all tests.
tidy:
    cargo update --workspace
    cargo sort --workspace
    cargo fmt
    cargo check --all --all-features
    cargo clippy --all --all-features -- -W clippy::pedantic
    cargo test --all --all-features
    cargo doc --no-deps --all-features