chore: update depencency versions

This commit is contained in:
Kristofers Solo 2024-02-21 15:32:34 +02:00
parent 8b6a290b3e
commit c17c0ebffa
3 changed files with 387 additions and 244 deletions

627
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ edition = "2021"
[dependencies] [dependencies]
crossterm = "0.27" crossterm = "0.27"
ratatui = { version = "0.25" } ratatui = { version = "0.26" }
transmission-rpc = "0.4" transmission-rpc = "0.4"
# transmission-rpc = { path = "/home/kristofers/repos/transmission-rpc" } # transmission-rpc = { path = "/home/kristofers/repos/transmission-rpc" }
url = "2.4" url = "2.4"

View File

@ -26,7 +26,7 @@ pub fn render(app: &mut App, frame: &mut Frame) {
.constraints([Constraint::Length(3), Constraint::Min(0)].as_ref()) .constraints([Constraint::Length(3), Constraint::Min(0)].as_ref())
.split(size); .split(size);
let titles = app let titles: Vec<_> = app
.tabs() .tabs()
.iter() .iter()
.map(|x| Line::from(x.to_string())) .map(|x| Line::from(x.to_string()))