This is a todos GUI app that's written in rust using the egui crate.
add this to your Cargo.toml
[dependencies]
eframe = "0.22.0"
egui = { version = "0.22", features = ["persistence"] }
egui_extras = { version = "0.22", features = ["image"] }
image = { version = "0.24", features = ["jpeg", "png"] }
Install the required crates using cargo
cargo add <crate>