A library for parsing Java class files.
```rust use std::{fs::File, io, io::Read, path::Path};
use classfmt::ClassParser;
fn main() -> io::Result<()> { let mut f = File::open(Path::new("./tests/Fields.class"))?; let mut buf = Vec::withcapacity(64); f.readto_end(&mut buf)?;
let class = ClassParser::from_bytes(&buf).parse().unwrap();
println!("{:#?}", class);
Ok(())
} ```