# rfclib
[](https://crates.io/crates/rfclib)
[](https://docs.rs/rfclib)
[](https://github.com/Ewpratten/rfclib/actions/workflows/build.yml)
[](https://github.com/Ewpratten/rfclib/actions/workflows/clippy.yml)
[](https://github.com/Ewpratten/rfclib/actions/workflows/audit.yml)
Rust library for querying IETF RFCs
## Example
```rust
let rfc = rfclib::query_rfc(2549).await.unwrap();
assert_eq!(rfc.name, "rfc2549");
assert_eq!(rfc.title, "IP over Avian Carriers with Quality of Service");
```