todo-txt 0.4.0

Parser for the todo.txt format
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate chrono;
#[macro_use]
extern crate nom;
extern crate regex;

pub mod parser;
pub mod task;

pub use chrono::NaiveDate as Date;
pub use task::Task;