chore: bump MSRV to 1.70

This commit is contained in:
graelo 2023-09-02 01:03:51 +02:00
parent 1c7c930977
commit 6000913a53
5 changed files with 7 additions and 7 deletions

View file

@ -5,6 +5,6 @@
set -ex
ci=$(dirname $0)
for version in 1.64.0 stable beta nightly; do
for version in 1.70.0 stable beta nightly; do
rustup run "$version" "$ci/test_full.sh"
done

View file

@ -3,7 +3,7 @@
set -e
CRATE=tmux-copyrat
MSRV=1.64
MSRV=1.70
get_rust_version() {
local array=($(rustc --version));
@ -28,7 +28,7 @@ if ! check_version $MSRV ; then
fi
FEATURES=()
# check_version 1.64 && FEATURES+=(libm)
# check_version 1.70 && FEATURES+=(libm)
echo "Testing supported features: ${FEATURES[*]}"
set -x