- Added more lints to Cargo.toml (for fun I guess)

- Extended benchmarking system to check all protocols, not just kitty
- Updated deps
This commit is contained in:
itsjunetime
2025-11-26 12:25:56 -06:00
parent 74def1c0a8
commit 8f57cd02c3
12 changed files with 343 additions and 193 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
use ratatui_image::picker::ProtocolType;
mod utils;
const BLACK: i32 = 0;
@@ -12,5 +14,5 @@ async fn main() {
.nth(1)
.expect("Please enter a file to profile");
utils::render_doc(file, None, BLACK, WHITE).await;
utils::render_doc(file, None, BLACK, WHITE, ProtocolType::Kitty).await;
}