This library deserializes books in FB2 format. The library almost conforms to the standard XSD schema with a few exceptions:
Rc<Binary>
```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
Plan for the next releases:
serde
support to get rid of the handwritten parserprose_contemporary
genre)