From 8c10a3c4bcc97d0fadaca8dc49a4cc80ac94d316 Mon Sep 17 00:00:00 2001 From: Andrew Chu <30539982+andrewcchu@users.noreply.github.com> Date: Wed, 19 Feb 2025 13:09:37 -0600 Subject: [PATCH] Enable png feature for image crate (#51) * Enable png feature for image crate * Fix typo --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 22a3cd4..c682b26 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ ratatui = { git = "https://github.com/itsjunetime/ratatui.git" } ratatui-image = { git = "https://github.com/itsjunetime/ratatui-image.git", branch = "vb64_on_personal", default-features = false } # ratatui-image = { path = "./ratatui-image", features = ["vb64"], default-features = false } crossterm = { version = "0.28.1", features = ["event-stream"] } -image = { version = "0.25.1", features = ["pnm", "rayon"], default-features = false } +image = { version = "0.25.1", features = ["pnm", "rayon", "png"], default-features = false } notify = { version = "8.0.0", features = ["crossbeam-channel"] } tokio = { version = "1.37.0", features = ["rt-multi-thread", "macros"] } futures-util = { version = "0.3.30", default-features = false }