#doi #bibtex #bibliography #biblatex

doi2bib

Generate a bibtex entry from a doi

11 releases

Uses new Rust 2024

0.3.0 Jan 10, 2026
0.2.2 Jul 18, 2025
0.2.1 May 28, 2025
0.2.0 Jul 13, 2024
0.1.3 Jul 9, 2022

#3 in #biblatex

49 downloads per month
Used in bibget

MIT license

17KB
87 lines

doi2bib

CI crates.io Documentation dependency status MIT

Generate a bibtex entry from a doi.

Usage

let doi2bib = doi2bib::Doi2Bib::new().unwrap();
let bibtex = doi2bib.resolve_doi("10.1109/5.771073").await.unwrap();
println!("{}", bibtex);
// @article{Paskin_1999, 
//     title={Toward unique identifiers},
//     volume={87},
//     ISSN={0018-9219}, 
//     url={http://dx.doi.org/10.1109/5.771073},
//     DOI={10.1109/5.771073},
//     number={7},
//     journal={Proceedings of the IEEE},
//     publisher={Institute of Electrical and Electronics Engineers (IEEE)},
//     author={Paskin, N.},
//     year={1999},
//     month=jul,
//     pages={1208–1227}
// }

License

Licensed under MIT license (LICENSE or http://opensource.org/licenses/MIT)

Dependencies

~15–24MB
~359K SLoC