Skip to content

Commit ed53a8d

Browse files
committed
update libs
1 parent 5dacb00 commit ed53a8d

File tree

8 files changed

+140
-62
lines changed

8 files changed

+140
-62
lines changed

Cargo.lock

Lines changed: 108 additions & 24 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 & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ edition = "2021"
2727

2828
[dependencies]
2929
crossterm = "0.27"
30-
ratatui = { version = "0.23.0", default-features = false, features = [
30+
ratatui = { version = "0.25.0", default-features = false, features = [
3131
'crossterm',
3232
] }
3333
serde = { version = "1.0", features = ["derive"] }
@@ -40,13 +40,13 @@ clap = { version = "4.4", features = [
4040
"derive",
4141
] }
4242
tui-input = "0.8"
43-
tui-textarea = { version = "0.2", default-features = false, features = [
44-
"ratatui-crossterm",
43+
tui-textarea = { version = "0.4.0", default-features = false, features = [
44+
"crossterm",
4545
] }
4646
backtrace = "0.3"
4747
human-panic = "1.1"
4848
base64 = "0.21"
49-
jsonwebtoken = "9.1"
49+
jsonwebtoken = "9.2.0"
5050
chrono = "0.4"
5151

5252
# XCB is a PITA to compile for ARM so disabling the copy feature on ARM for now

src/app/models.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
use ratatui::{backend::Backend, layout::Rect, widgets::TableState, Frame};
1+
use ratatui::{layout::Rect, widgets::TableState, Frame};
22

33
use super::{ActiveBlock, App, Route};
44

55
pub trait AppResource {
6-
fn render<B: Backend>(block: ActiveBlock, f: &mut Frame<'_, B>, app: &mut App, area: Rect);
6+
fn render(block: ActiveBlock, f: &mut Frame<'_>, app: &mut App, area: Rect);
77
}
88

99
pub trait Scrollable {

0 commit comments

Comments
 (0)