Todo-txt

Build Status Build Status

Parser for the todo.txt format.

Usage

Add it to your dependencies:

toml [dependencies] todo-txt = "^1.0"

And use it:

```rust use std::str::FromStr;

fn main() { let line = "x (A) 2016-05-20 2016-04-30 measure space for +chapelShelving @chapel due:2016-05-30"; let task = todotxt::Task::fromstr(line);

println!("{:#?}", task);

} ```

Features