File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1212 runs-on : ubuntu-latest
1313 strategy :
1414 matrix :
15- rust : [1.74 .0, beta, nightly]
15+ rust : [1.78 .0, beta, nightly]
1616
1717 steps :
1818 - name : Rust install
Original file line number Diff line number Diff line change 22name = " tmux-backup"
33version = " 0.5.8"
44edition = " 2021"
5- rust-version = " 1.74 .0"
5+ rust-version = " 1.78 .0"
66description = " A backup & restore solution for Tmux sessions."
77readme = " README.md"
88
Original file line number Diff line number Diff line change 22
33[ ![ crate] ( https://img.shields.io/crates/v/tmux-backup.svg )] ( https://crates.io/crates/tmux-backup )
44[ ![ documentation] ( https://docs.rs/tmux-backup/badge.svg )] ( https://docs.rs/tmux-backup )
5- [ ![ minimum rustc 1.74 ] ( https://img.shields.io/badge/rustc-1.74 +-red.svg )] ( https://rust-lang.github.io/rfcs/2495-min-rust-version.html )
5+ [ ![ minimum rustc 1.78 ] ( https://img.shields.io/badge/rustc-1.78 +-red.svg )] ( https://rust-lang.github.io/rfcs/2495-min-rust-version.html )
66[ ![ rust 2021 edition] ( https://img.shields.io/badge/edition-2021-blue.svg )] ( https://doc.rust-lang.org/edition-guide/rust-2021/index.html )
77[ ![ build status] ( https://github.com/graelo/tmux-backup/actions/workflows/essentials.yml/badge.svg )] ( https://github.com/graelo/tmux-backup/actions/workflows/essentials.yml )
88
99<!-- cargo-sync-readme start -->
1010
1111A backup & restore solution for Tmux sessions.
1212
13- Version requirement: _ rustc 1.74 +_
13+ Version requirement: _ rustc 1.78 +_
1414
1515## Features
1616
@@ -27,7 +27,7 @@ Version requirement: _rustc 1.74+_
2727 - the lastest backup per week of the past 4 weeks (max 3 backups - exclude the past week),
2828 - the lastest backup per month of this year (max 11 backups - exclude the past month).
2929- Because you decide where backups are stored, you can use both strategies, combining the
30- benefits of high-frequency backups and on demand backups like in tmux-resurrect.
30+ benefits of high-frequency backups and on demand backups like in tmux-resurrect.
3131
3232## Getting started
3333
Original file line number Diff line number Diff line change 33set -e
44
55CRATE=tmux-backup
6- MSRV=1.74
6+ MSRV=1.78
77
88get_rust_version () {
99 local array=($( rustc --version) );
@@ -28,7 +28,7 @@ if ! check_version $MSRV ; then
2828fi
2929
3030FEATURES=()
31- # check_version 1.74 && FEATURES+=(libm)
31+ # check_version 1.78 && FEATURES+=(libm)
3232echo " Testing supported features: ${FEATURES[*]} "
3333
3434set -x
Original file line number Diff line number Diff line change 22
33//! A backup & restore solution for Tmux sessions.
44//!
5- //! Version requirement: _rustc 1.74 +_
5+ //! Version requirement: _rustc 1.78 +_
66//!
77//! ## Features
88//!
You can’t perform that action at this time.
0 commit comments