FB2 Parser for Rust

This library deserializes books in FB2 format. The library almost conforms to the standard XSD schema with a few exceptions:

Example

```rust use std::fs::File; use std::io::BufReader;

fn main() { let file = File::open("examples/books/churchill_trial.fb2").unwrap(); let reader = BufReader::new(file); let book = fb2::parse(reader).unwrap(); println!("{:#?}", book); } ```

Try with: shell cargo run --example parse_sample