Raise min tested rustc version to 1.34

Required by use of str::split_ascii_whitespace in the cc crate.

    error[E0658]: use of unstable library feature 'split_ascii_whitespace' (see issue #48656)
        --> .cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.62/src/lib.rs:2157:14
         |
    2157 |             .split_ascii_whitespace()
         |              ^^^^^^^^^^^^^^^^^^^^^^
This commit is contained in:
David Tolnay 2020-11-06 18:17:07 -08:00
parent adf048bcec
commit fd6d5eb4fb
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [nightly, beta, stable, 1.31.0]
rust: [nightly, beta, stable, 1.34.0]
os: [ubuntu, macos, windows]
steps:
- uses: actions/checkout@v2