mirror of
https://github.com/TECHNOFAB11/tmux-copyrat.git
synced 2025-12-12 16:10:07 +01:00
fix: update min rust version to 1.64
This commit is contained in:
parent
5752d800b8
commit
7046114a3f
5 changed files with 7 additions and 7 deletions
2
.github/workflows/large-scope.yml
vendored
2
.github/workflows/large-scope.yml
vendored
|
|
@ -12,7 +12,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
rust: [1.60.0, beta, nightly]
|
rust: [1.64.0, beta, nightly]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Rust install
|
- name: Rust install
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[](https://crates.io/crates/tmux-copyrat)
|
[](https://crates.io/crates/tmux-copyrat)
|
||||||
[](https://docs.rs/tmux-copyrat)
|
[](https://docs.rs/tmux-copyrat)
|
||||||
[](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
|
[](https://rust-lang.github.io/rfcs/2495-min-rust-version.html)
|
||||||
[](https://doc.rust-lang.org/edition-guide/rust-2021/index.html)
|
[](https://doc.rust-lang.org/edition-guide/rust-2021/index.html)
|
||||||
[](https://tmux.github.io)
|
[](https://tmux.github.io)
|
||||||
[](https://github.com/graelo/tmux-copyrat/actions)
|
[](https://github.com/graelo/tmux-copyrat/actions)
|
||||||
|
|
@ -24,7 +24,7 @@ The name is a tribute to [tmux-copyrat], which I used for many years for that
|
||||||
same functionality. For this Rust implementation, I got inspired by
|
same functionality. For this Rust implementation, I got inspired by
|
||||||
[tmux-thumbs], and I even borrowed some parts of his regex tests.
|
[tmux-thumbs], and I even borrowed some parts of his regex tests.
|
||||||
|
|
||||||
Version requirement: _rustc 1.60+_
|
Version requirement: _rustc 1.64+_
|
||||||
|
|
||||||
## Demo
|
## Demo
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,6 @@
|
||||||
set -ex
|
set -ex
|
||||||
|
|
||||||
ci=$(dirname $0)
|
ci=$(dirname $0)
|
||||||
for version in 1.60.0 stable beta nightly; do
|
for version in 1.64.0 stable beta nightly; do
|
||||||
rustup run "$version" "$ci/test_full.sh"
|
rustup run "$version" "$ci/test_full.sh"
|
||||||
done
|
done
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
CRATE=tmux-copyrat
|
CRATE=tmux-copyrat
|
||||||
MSRV=1.60
|
MSRV=1.64
|
||||||
|
|
||||||
get_rust_version() {
|
get_rust_version() {
|
||||||
local array=($(rustc --version));
|
local array=($(rustc --version));
|
||||||
|
|
@ -28,7 +28,7 @@ if ! check_version $MSRV ; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
FEATURES=()
|
FEATURES=()
|
||||||
# check_version 1.27 && FEATURES+=(libm)
|
# check_version 1.64 && FEATURES+=(libm)
|
||||||
echo "Testing supported features: ${FEATURES[*]}"
|
echo "Testing supported features: ${FEATURES[*]}"
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
//! same functionality. For this Rust implementation, I got inspired by
|
//! same functionality. For this Rust implementation, I got inspired by
|
||||||
//! [tmux-thumbs], and I even borrowed some parts of his regex tests.
|
//! [tmux-thumbs], and I even borrowed some parts of his regex tests.
|
||||||
//!
|
//!
|
||||||
//! Version requirement: _rustc 1.60+_
|
//! Version requirement: _rustc 1.64+_
|
||||||
//!
|
//!
|
||||||
//! ## Demo
|
//! ## Demo
|
||||||
//!
|
//!
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue