Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 823 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 823 Bytes

Todo app built in Rust

Todo App Preview Blank State Todo Creation Todo List

Dependencies
These will be installed automatically when building

  • ncurses (Used for creating the TUI)
  • dialoguer (Used for input handling since the ncurses library didn't provide the desired features)

Setup

  1. Install Rust
  2. Set the environment variable TODO_FILE_LOCATION to the file which will store your todos (or leave empty and it'll use ~/.local/share/todo/todo.todos)
  3. Build the project
$ cargo build --release
  1. This will have created a file in /target/release called td, run that executable and you're good to go!