Commit graph

66 commits

Author SHA1 Message Date
David Tolnay
f0d5dbcfdf
Install newest build of cargo-outdated
The old version available by default in the GitHub Actions image fails
with:

    thread 'main' panicked at 'package cache lock is not currently held, Cargo forgot to call `acquire_package_cache_lock` before we got to this stack frame', /usr/share/rust/.cargo/registry/src/github.com-1ecc6299db9ec823/cargo-0.57.0/src/cargo/util/config/mod.rs:1542:9
    note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
2021-11-17 13:35:35 -08:00
David Tolnay
1b5fd6d6eb
Raise minimum tested compiler from 1.46 to 1.51
Required by use of `resolver` in the `time` crate's Cargo.toml.

    error: failed to download `time v0.3.5`

    Caused by:
      unable to get packages from source

    Caused by:
      failed to parse manifest at ~/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.3.5/Cargo.toml

    Caused by:
      feature `resolver` is required

      this Cargo does not support nightly features, but if you
      switch to nightly channel you can add
      `cargo-features = ["resolver"]` to enable this feature
2021-11-14 21:03:21 -08:00
David Tolnay
a1d16c6299
Add actions job to notice outdated dependencies 2021-10-08 01:52:47 -04:00
David Tolnay
f4139ce2e9
Rerun check build with updated dependencies 2021-10-08 01:25:05 -04:00
David Tolnay
deabfe01fb
Run clippy on test suite too 2021-09-30 01:32:02 -04:00
David Tolnay
be4b1ba5b9
Skip clippy job on pull requests 2021-09-18 16:41:09 -07:00
David Tolnay
3fa442c07d
Raise minimum supported compiler to rustc 1.46
Required by const fn in bitflags.

    error[E0658]: `if` is not allowed in a `const fn`
      --> /home/david/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/settings.rs:7:1
       |
    7  | / bitflags! {
    8  | |     struct Flags: u64 {
    9  | |         const SC_NEGATE_REQS       = 1;
    10 | |         const SC_REQUIRED          = 1 << 1;
    ...  |
    51 | |     }
    52 | | }
       | |_^
       |
       = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)

    error[E0658]: `if` is not allowed in a `const fn`
      --> /home/david/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/settings.rs:6:1
       |
    6  | / bitflags! {
    7  | |     struct Flags: u32 {
    8  | |         const REQUIRED         = 1;
    9  | |         const MULTIPLE         = 1 << 1;
    ...  |
    28 | |     }
    29 | | }
       | |_^
       |
       = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
2021-08-25 00:42:47 -07:00
David Tolnay
a932b8947a
Raise minimum supported compiler to rustc 1.45
Required by use of str::strip_suffix in `bat`.

    error[E0658]: use of unstable library feature 'str_strip': newly added
       --> /home/david/.cargo/registry/src/github.com-1ecc6299db9ec823/bat-0.18.2/src/assets.rs:304:75
        |
    304 | ...                   if let Some(stripped_filename) = file_str.strip_suffix(suffix) {
        |                                                                 ^^^^^^^^^^^^
2021-07-27 21:10:30 -07:00
David Tolnay
98553da99d
Run a CI build on newest nightly, even if rustfmt is delayed 2021-02-07 14:30:57 -08:00
David Tolnay
c180463595
Provide a nightly rustfmt to CI 2021-02-07 14:22:26 -08:00
David Tolnay
4ecd70bbf7
Compare cargo-expand output against expected in CI 2021-02-07 14:06:41 -08:00
David Tolnay
72c640677c
Fix catching clippy warnings as CI failures 2021-01-04 23:44:27 -08:00
David Tolnay
c96d6aaacb
Opt in to pedantic clippy lints 2020-12-29 16:59:56 -08:00
David Tolnay
f816726b99
Raise minimum supported rustc to 1.44 2020-11-10 13:29:46 -08:00
David Tolnay
9ad3eefdf3
Remove Travis configuration 2020-05-05 11:27:43 -07:00
David Tolnay
198a437c5f
Enable GitHub Actions 2020-05-02 22:50:44 -07:00