Building a Todo List CLI in Rust with SQLite
In this project, you will build a basic command-line to-do list app in Rust. It stores tasks in a SQLite database using rusqlite, and accepts commands from the user via clap. This teaches you real-world CRUD operations: create, read, update, delete. When I first built a Rust CLI with persistent data, I wanted something minimal […]
Building a Todo List CLI in Rust with SQLite Read More »