Raise minimum tested compiler to 1.74

Required by newest versions of clap and clap_builder.

    error: package `clap_builder v4.5.0` cannot be built because it requires rustc 1.74 or
    newer, while the currently active rustc version is 1.70.0
    Either upgrade to rustc 1.74 or newer, or use
    cargo update -p clap_builder@4.5.0 --precise ver
    where `ver` is the latest version of `clap_builder` supporting rustc 1.70.0
This commit is contained in:
David Tolnay 2024-02-08 19:14:26 -08:00
parent 07c5c5935b
commit 4934b35c02
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.70.0]
rust: [nightly, beta, stable, 1.74.0]
timeout-minutes: 45
steps:
- uses: actions/checkout@v4