this repo has no description
1opam-version: "2.0" 2synopsis: "An OCaml library implementing bi-directional maps and multi-maps" 3description: 4 "Bi-directional maps permit clients to not only obtain a value provided a key, but to obtain a key provided a value" 5maintainer: ["papatangonyc@gmail.com"] 6authors: ["papatangonyc@gmail.com"] 7license: "GPL-3.0-only" 8homepage: "https://github.com/pat227/bimap.git" 9bug-reports: "https://github.com/pat227/bimap.git/issues" 10depends: [ 11 "ocaml" {>= "4.06.0"} 12 "core" {>= "v0.11.3" & < "v0.15"} 13 "dune" {>= "2.0"} 14 "ounit" {with-test & >= "2.2.2"} 15] 16build: [ 17 ["dune" "subst"] {dev} 18 [ 19 "dune" 20 "build" 21 "-p" 22 name 23 "-j" 24 jobs 25 "@install" 26 "@runtest" {with-test} 27 "@doc" {with-doc} 28 ] 29] 30dev-repo: "git+https://github.com/pat227/bimap.git" 31url { 32 src: "https://github.com/pat227/bimap/archive/20201231.tar.gz" 33 checksum: [ 34 "md5=f6d279ec651aefd03ece86f4d0a7ed27" 35 "sha512=bf21e5bfbc26bba3835ac65eaa5fb261359aba030d2d7c50794b9e0f87a491b04999dd0053a9ffb3e9a551eabfb212dc7cde4384fb27b553c5044296806c0f3f" 36 ] 37}