todo-txt 1.1.0

Parser for the todo.txt format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(feature="clippy", feature(plugin))]
#![cfg_attr(feature="clippy", plugin(clippy))]

extern crate chrono;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate nom;
extern crate regex;

pub mod parser;
pub mod task;

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