8 releases

0.2.0 Jul 13, 2024
0.1.6 Jun 7, 2023
0.1.5 Nov 19, 2022
0.1.4 Sep 11, 2022
0.1.0 Apr 3, 2022

#4 in #biblatex

Download history 14/week @ 2024-10-31 13/week @ 2024-11-07 30/week @ 2024-11-14 10/week @ 2024-11-21 7/week @ 2024-11-28 22/week @ 2024-12-05 48/week @ 2024-12-12 17/week @ 2024-12-19 3/week @ 2024-12-26 2/week @ 2025-01-02 75/week @ 2025-01-09 1/week @ 2025-01-16 7/week @ 2025-01-23 20/week @ 2025-01-30 19/week @ 2025-02-06 15/week @ 2025-02-13

62 downloads per month
Used in bibget

MIT license

14KB
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

~6–18MB
~243K SLoC