Skip to content

Commit

Permalink
Remove unnecessary dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lusingander committed Sep 13, 2024
1 parent 8e25246 commit c975abb
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ dirs = "5.0.1"
humansize = "2.1.3"
image = "0.25.2"
infer = "0.16.0"
itertools = "0.13.0"
itsuki = "0.2.0"
once_cell = "1.19.0"
open = "5.3.0"
Expand Down
3 changes: 1 addition & 2 deletions src/pages/object_preview.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,12 +312,11 @@ mod tests {

use super::*;
use chrono::{DateTime, Local, NaiveDateTime};
use itertools::Itertools;
use ratatui::{backend::TestBackend, buffer::Buffer, style::Color, Terminal};

fn object(ss: &[&str]) -> RawObject {
RawObject {
bytes: ss.iter().join("\n").as_bytes().to_vec(),
bytes: ss.join("\n").as_bytes().to_vec(),
}
}

Expand Down

0 comments on commit c975abb

Please sign in to comment.