Raise minimum tested compiler to 1.70

error[E0658]: use of unstable library feature 'is_terminal'
       --> github.com-1ecc6299db9ec823/grep-cli-0.1.8/src/lib.rs:168:5
        |
    168 | use std::io::IsTerminal;
        |     ^^^^^^^^^^^^^^^^^^^

    error[E0658]: use of unstable library feature 'is_terminal'
       --> github.com-1ecc6299db9ec823/grep-cli-0.1.8/src/lib.rs:220:22
        |
    220 |     std::io::stdin().is_terminal()
        |                      ^^^^^^^^^^^

    error[E0658]: use of unstable library feature 'is_terminal'
       --> github.com-1ecc6299db9ec823/grep-cli-0.1.8/src/lib.rs:232:23
        |
    232 |     std::io::stdout().is_terminal()
        |                       ^^^^^^^^^^^

    error[E0658]: use of unstable library feature 'is_terminal'
       --> github.com-1ecc6299db9ec823/grep-cli-0.1.8/src/lib.rs:238:23
        |
    238 |     std::io::stderr().is_terminal()
        |                       ^^^^^^^^^^^
This commit is contained in:
David Tolnay 2023-07-05 14:14:13 -07:00
parent 2ce232fb30
commit ab40799d78
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

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