Skip to content

Commit 9c7268e

Browse files
committed
Swap MSRV to 1.42 for all targets
1 parent c79c0b2 commit 9c7268e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ $ QEMU_STRACE=1 cross run --target aarch64-unknown-linux-gnu
331331

332332
## Minimum Supported Rust Version (MSRV)
333333

334-
This crate is guaranteed to compile on stable Rust 1.32.0 and up. It *might*
334+
This crate is guaranteed to compile on stable Rust 1.42.0 and up. It *might*
335335
compile with older versions but that may change in any new patch release.
336336

337337
Some cross-compilation targets require a later Rust version, and using Xargo

azure-pipelines.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
vmImage: $(VM_IMAGE)
1515
variables:
1616
VM_IMAGE: ubuntu-latest
17-
TOOLCHAIN: 1.32.0
17+
TOOLCHAIN: 1.42.0
1818
CARGO_NET_RETRY: 3
1919
CARGO_HTTP_CHECK_REVOKE: false
2020
strategy:
@@ -32,7 +32,7 @@ jobs:
3232
powerpc-unknown-linux-gnu: { TARGET: powerpc-unknown-linux-gnu, CPP: 1, DYLIB: 1, STD: 1, RUN: 1, RUNNERS: qemu-user qemu-system }
3333
powerpc64-unknown-linux-gnu: { TARGET: powerpc64-unknown-linux-gnu, CPP: 1, DYLIB: 1, STD: 1, RUN: 1, RUNNERS: qemu-user qemu-system }
3434
powerpc64le-unknown-linux-gnu: { TARGET: powerpc64le-unknown-linux-gnu, CPP: 1, DYLIB: 1, STD: 1, RUN: 1, RUNNERS: qemu-user qemu-system }
35-
riscv64gc-unknown-linux-gnu: { TARGET: riscv64gc-unknown-linux-gnu, CPP: 1, STD: 1, RUN: 1, TOOLCHAIN: 1.42.0 }
35+
riscv64gc-unknown-linux-gnu: { TARGET: riscv64gc-unknown-linux-gnu, CPP: 1, STD: 1, RUN: 1 }
3636
s390x-unknown-linux-gnu: { TARGET: s390x-unknown-linux-gnu, CPP: 1, DYLIB: 1, STD: 1, RUN: 1, RUNNERS: qemu-system }
3737
sparc64-unknown-linux-gnu: { TARGET: sparc64-unknown-linux-gnu, CPP: 1, DYLIB: 1, STD: 1, RUN: 1, RUNNERS: qemu-system }
3838
x86_64-unknown-linux-gnu: { TARGET: x86_64-unknown-linux-gnu, CPP: 1, DYLIB: 1, STD: 1, RUN: 1, RUNNERS: native qemu-user qemu-system, DEPLOY: 1, CRATES_IO_PUBLISH: 1 }
@@ -62,14 +62,14 @@ jobs:
6262
x86_64-unknown-netbsd: { TARGET: x86_64-unknown-netbsd, CPP: 1, DYLIB: 1, STD: 1 }
6363
sparcv9-sun-solaris: { TARGET: sparcv9-sun-solaris, CPP: 1, DYLIB: 1, STD: 1 }
6464
x86_64-sun-solaris: { TARGET: x86_64-sun-solaris, CPP: 1, DYLIB: 1, STD: 1 }
65-
asmjs-unknown-emscripten: { TARGET: asmjs-unknown-emscripten, STD: 1, RUN: 1, TOOLCHAIN: 1.40.0 }
65+
asmjs-unknown-emscripten: { TARGET: asmjs-unknown-emscripten, STD: 1, RUN: 1 }
6666
# `cargo run` fails with an assertion error (https://github.com/rust-lang/cargo/issues/4689) on `wasm32-unknown-emscripten`.
6767
wasm32-unknown-emscripten: { TARGET: wasm32-unknown-emscripten, STD: 1 }
6868
thumbv6m-none-eabi: { TARGET: thumbv6m-none-eabi, STD: 1 }
6969
thumbv7em-none-eabi: { TARGET: thumbv7em-none-eabi, STD: 1 }
7070
thumbv7em-none-eabihf: { TARGET: thumbv7em-none-eabihf, STD: 1 }
7171
thumbv7m-none-eabi: { TARGET: thumbv7m-none-eabi, STD: 1 }
72-
x86_64-pc-windows-msvc: { TARGET: x86_64-pc-windows-msvc, CPP: 1, STD: 1, RUN: 1, VM_IMAGE: vs2017-win2016, DEPLOY: 1, TOOLCHAIN: 1.38.0 }
72+
x86_64-pc-windows-msvc: { TARGET: x86_64-pc-windows-msvc, CPP: 1, STD: 1, RUN: 1, VM_IMAGE: vs2017-win2016, DEPLOY: 1 }
7373
timeoutInMinutes: 360
7474
steps:
7575
- template: ci/azure-install-rust.yml

0 commit comments

Comments
 (0)