Skip to content

Commit

Permalink
bump msrv 1.64
Browse files Browse the repository at this point in the history
  • Loading branch information
extrawurst committed Jan 29, 2023
1 parent 48eed05 commit ce70d5e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .clippy.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
msrv = "1.60.0"
msrv = "1.64.0"
cognitive-complexity-threshold = 18
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [nightly, stable, '1.60']
rust: [nightly, stable, '1.64']
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.rust == 'nightly' }}

Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [nightly, stable, '1.60']
rust: [nightly, stable, '1.64']
continue-on-error: ${{ matrix.rust == 'nightly' }}
steps:
- uses: actions/checkout@master
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust: [nightly, stable, '1.60']
rust: [nightly, stable, '1.64']
continue-on-error: ${{ matrix.rust == 'nightly' }}
steps:
- uses: actions/checkout@master
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.22.1"
authors = ["extrawurst <mail@rusticorn.com>"]
description = "blazing fast terminal-ui for git"
edition = "2021"
rust-version = "1.60"
rust-version = "1.64"
exclude = [".github/*", ".vscode/*", "assets/*"]
homepage = "https://github.com/extrawurst/gitui"
repository = "https://github.com/extrawurst/gitui"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ Binaries available for:

### Requirements

- Minimum supported `rust`/`cargo` version: `1.60`
- Minimum supported `rust`/`cargo` version: `1.64`
- See [Install Rust](https://www.rust-lang.org/tools/install)

### Cargo Install
Expand Down
9 changes: 5 additions & 4 deletions src/components/syntax_text.rs
Original file line number Diff line number Diff line change
Expand Up @@ -271,10 +271,11 @@ impl Component for SyntaxTextComponent {
) -> Result<EventState> {
if let Event::Key(key) = event {
if let Some(nav) = common_nav(key, &self.key_config) {
return Ok(self
.scroll(nav)
.then(|| EventState::Consumed)
.unwrap_or(EventState::NotConsumed));
return Ok(if self.scroll(nav) {
EventState::Consumed
} else {
EventState::NotConsumed
});
}
}

Expand Down

0 comments on commit ce70d5e

Please sign in to comment.