task_manager_command_line 0.1.1

A simple task manager cli tool
Documentation
1
2
3
4
5
6
7
8
9
//! A simple command-line task manager application.
//!
//! This library provides the core logic and data structures for managing tasks,
//! including adding, listing, completing, and removing tasks, with data persistence
//! to a TOML file.

pub mod app;

pub use app::*;