Thanks to visit codestin.com
Credit goes to github.com

Skip to content

den4hic/task_list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Task List Parser in Rust

Overview

This project is a task list parser written in Rust using the pest parsing library. It can read and interpret structured task lists, with fields like priority, completion status, start date, optional tags, time estimate, and description.

Grammar Rules

  • Priority: Indicates importance using !, !!, or !!!.
  • Status: [ ] for incomplete, [x] for completed.
  • Date: {YYYY-MM-DD} format.
  • Tags: Hashtags for categorization (e.g., #urgent).
  • Time Estimate: Time estimate in hours (h) or minutes (m).

Example Input

  • !! [ ] {2024-11-05} #shopping 1h Buy groceries
  • !!! [x] {2024-12-01} #work 2h Finish Rust project
  • ! [ ] {2025-01-15} #learning 5h Prepare presentation

Running the Parser

cargo run -- --file tasks.txt

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published