todotxt-tui 0.2.1

Todo.txt TUI is a highly customizable terminal-based application for managing your todo tasks. It follows the todo.txt format and offers a wide range of configuration options to suit your needs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod config;
pub mod error;
pub mod file_worker;
pub mod layout;
pub mod todo;
pub mod ui;

pub use error::*;

#[macro_use]
extern crate enum_dispatch;