Skip to content

Commit 7406a35

Browse files
Merge pull request #137 from wcampbell0x2a/renovate/all-minor-patch
2 parents 474cb52 + c1669a5 commit 7406a35

File tree

5 files changed

+67
-79
lines changed

5 files changed

+67
-79
lines changed

.github/workflows/cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ runs:
77
# over time).
88
- name: Add cache for cargo
99
id: cache
10-
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
10+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
1111
with:
1212
path: |
1313
# Taken from <https://doc.rust-lang.org/nightly/cargo/guide/cargo-home.html#caching-the-cargo-home-in-ci>.

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- run: cargo llvm-cov --workspace --codecov --output-path codecov.json --release
3737

3838
- name: Upload coverage to Codecov
39-
uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v5.1.2
39+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
4040
with:
4141
token: ${{ secrets.CODECOV_TOKEN }}
4242
files: codecov.json

Cargo.lock

Lines changed: 59 additions & 69 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,22 @@ ansi-to-tui = "7.0.0"
1313
anyhow = "1.0.98"
1414
chrono = "0.4.38"
1515
clap = { version = "4.5.21", features = ["derive"] }
16-
clap-cargo = "0.14.1"
17-
crossterm = "0.28.1"
18-
deku = { version = "0.18.1", default-features = false, features = ["alloc", "std"] }
16+
clap-cargo = "0.18.0"
17+
deku = { version = "0.20.0", default-features = false, features = ["alloc", "std"] }
1918
env_logger = "0.11.5"
2019
evalexpr = "13.0.0"
2120
hex = "0.4.3"
2221
log = "0.4.22"
2322
once_cell = "1.20.2"
2423
ratatui = "0.29.0"
2524
regex = "1.11.1"
26-
tui-input = "0.11.0"
25+
tui-input = "0.14.0"
2726

2827
[dev-dependencies]
2928
insta = "1.41.1"
3029
test-assets-ureq = "0.3.0"
3130
libc = "0.2.169"
32-
rstest = "0.23"
31+
rstest = "0.26"
3332

3433
[profile.release]
3534
strip = true

src/main.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,13 @@ use std::{env, thread};
2828
use anyhow::Context;
2929
use clap::{Parser, ValueEnum};
3030
use clap_cargo::style::CLAP_STYLING;
31-
use crossterm::event::KeyModifiers;
3231
use deku::ctx::Endian;
3332
use deref::Deref;
3433
use env_logger::{Builder, Env};
3534
use gdb::write_mi;
3635
use log::{debug, error};
3736
use ratatui::crossterm::{
38-
event::{self, DisableMouseCapture, Event, KeyCode},
37+
event::{self, DisableMouseCapture, Event, KeyCode, KeyModifiers},
3938
execute,
4039
terminal::{LeaveAlternateScreen, disable_raw_mode},
4140
};
@@ -628,7 +627,7 @@ fn run_app<B: Backend>(
628627
// if else, we display them
629628
}
630629
}
631-
if crossterm::event::poll(Duration::from_millis(10))?
630+
if event::poll(Duration::from_millis(10))?
632631
&& let Event::Key(key) = event::read()?
633632
{
634633
if key.code == KeyCode::Char('c') && key.modifiers.contains(KeyModifiers::CONTROL) {

0 commit comments

Comments
 (0)