//! Parse citations of United States Congress legislative documents and convert them to
//! Congress.gov Govinfo URLs.
//!
//! Calling `parse` on a string like `"118hr815"`, or calling `Citation::parse("118hr815")`
//! returns a struct representing the document's citation. Calling `to_url` on such a struct
//! returns `"https://www.congress.gov/bill/118th-congress/house-bill/815"`
pub use crateCitation;