Raise minimum rustc version to 1.28 (Fixes CI)
Known minimum version to build [regex](https://crates.io/crates/regex). Old enough as it is, we're not c++ here!
This commit is contained in:
parent
faf6e2a8a6
commit
1005387c2c
3 changed files with 7 additions and 5 deletions
|
@ -5,9 +5,7 @@ matrix:
|
||||||
- rust: stable
|
- rust: stable
|
||||||
- rust: beta
|
- rust: beta
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
- rust: 1.17.0
|
- rust: 1.28.0
|
||||||
script: cargo build
|
|
||||||
- rust: 1.24.1
|
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
env: CLIPPY
|
env: CLIPPY
|
||||||
script: |
|
script: |
|
||||||
|
|
|
@ -103,6 +103,10 @@ so it may not be a huge problem for most users.
|
||||||
* Tag directive
|
* Tag directive
|
||||||
* Alias while desearilization
|
* Alias while desearilization
|
||||||
|
|
||||||
|
## Minimum Rust version policy
|
||||||
|
|
||||||
|
This crate's minimum supported `rustc` version is 1.28, as this is the currently known minimum version for [`regex`](https://crates.io/crates/regex#minimum-rust-version-policy) as well.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Licensed under either of
|
Licensed under either of
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
install:
|
install:
|
||||||
- ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.24.1-i686-pc-windows-gnu.exe'
|
- ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.28.0-i686-pc-windows-gnu.exe'
|
||||||
- rust-1.24.1-i686-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
|
- rust-1.28.0-i686-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
|
||||||
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
|
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
|
||||||
- SET PATH=%PATH%;C:\MinGW\bin
|
- SET PATH=%PATH%;C:\MinGW\bin
|
||||||
- rustc -V
|
- rustc -V
|
||||||
|
|
Loading…
Reference in a new issue