this repo has no description
1opam-version: "2.0" 2synopsis: 3 "Small CLI to get a bibtex entry from a DOI, an arXiv ID or a PubMed ID" 4maintainer: ["marcello.seri@gmail.com"] 5authors: ["Marcello Seri"] 6license: "MIT" 7homepage: "https://github.com/mseri/doi2bib" 8bug-reports: "https://github.com/mseri/doi2bib/issues" 9depends: [ 10 "dune" {>= "2.7"} 11 "ocaml" {>= "4.08"} 12 "astring" {>= "0.8.0"} 13 "cohttp-lwt-unix" {>= "2.5.0"} 14 "cmdliner" {>= "1.0.0"} 15 "decompress" {>= "1.4.0"} 16 "ezxmlm" {>= "1.1.0"} 17 "lwt" {>= "5.3.0"} 18 "bigstringaf" {>= "0.2.0"} 19 ("tls" {>= "0.12.0" & < "0.16"} | "tls-lwt" {< "1.0.0"}) 20 "re" {>= "1.0.0"} 21 "odoc" {with-doc} 22] 23conflicts: [ 24 "result" {< "1.5"} # uses Result.map but result can be pulled via lwt and takes over the Result module 25] 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36 "@doc" {with-doc} 37 ] 38] 39dev-repo: "git+https://github.com/mseri/doi2bib.git" 40x-commit-hash: "a95e236c59680e2078995501355ea0a143a37340" 41url { 42 src: 43 "https://github.com/mseri/doi2bib/releases/download/0.5.1/doi2bib-0.5.1.tbz" 44 checksum: [ 45 "sha256=c63f3c4073c598c68beeb122c5bd95e393931130af623b57ef87399f2e3f6e5c" 46 "sha512=48355cdb7124ceb21b53e2676bf78ab73b4cb2b4dc30674e33e26b15295813fbee1fb678676788d26515bd91b884fc3435a871dd070d9e027b72340dd9df1f54" 47 ] 48}