arXiv

License docs.rs CI Security audit codecov

A Rust library for parsing arXiv categories, identifiers and references.

Install

Run the following command in the terminal:

shell cargo add arxiv

Or, add this to Cargo.toml:

shell [dependencies] arxiv = "0.2"

Usage

```rust use std::str::FromStr; use arxiv::*;

// Parse an arXiv identifier let id = ArxivId::fromstr("arXiv:9912.12345v2").unwrap(); asserteq!(id.month(), 12); asserteq!(id.year(), 2099); asserteq!(id.number(), "12345"); assert_eq!(id.version(), Some(2));

// Parse an arXiv category let category = ArxivCategoryId::fromstr("astro-ph.HE").unwrap(); asserteq!(category.group(), ArxivGroup::Physics); asserteq!(category.archive(), ArxivArchive::AstroPh); asserteq!(category.subject(), String::from("HE"));

// Parse an arXiv stamp let stamp = ArxivStamp::fromstr("arXiv:0706.0001v1 [q-bio.CB] 1 Jun 2007").unwrap(); asserteq!(stamp.category(), Some(&ArxivCategoryId::trynew(ArxivArchive::QBio, "CB").unwrap())); asserteq!(stamp.submitted().year(), 2007); ```

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.