jsonfeed 0.1.3

Parser for the JSONFeed (http://jsonfeed.org) specification
Documentation
= JSONFeed Parser

This is a http://jsonfeed.org[JSONFeed] parser in Rust

Alpha, still needs lots of testing

== Example

----
extern crate jsonfeed;

use jsonfeed::{self, Feed};

fn main() {
	let source = "{...}";
	let feed: Feed = jsonfeed::from_str(source).unwrap();
}
----

TODO:

* Implement ability to add, serialize, and deserialize custom attributes from the json feed spec