this repo has no description
1opam-version: "2.0" 2maintainer: "Hannes Mehnert <hannes@mehnert.org>" 3authors: "Hannes Mehnert <hannes@mehnert.org>" 4license: "ISC" 5homepage: "https://github.com/hannesm/gmap" 6doc: "https://hannesm.github.io/gmap/doc" 7bug-reports: "https://github.com/hannesm/gmap/issues" 8depends: [ 9 "ocaml" {>= "4.04.2"} 10 "dune" 11 "fmt" 12] 13build: [ 14 ["dune" "subst"] {dev} 15 ["dune" "build" "-p" name "-j" jobs] 16] 17dev-repo: "git+https://github.com/hannesm/gmap.git" 18synopsis: "Heterogenous maps over a GADT" 19description: """ 20Gmap exposes the functor `Make` which takes a key type (a 21[GADT](https://en.wikipedia.org/wiki/Generalized_algebraic_data_type) 'a key) 22and outputs a type-safe Map where each 'a key is associated with a 'a value. 23This removes the need for additional packing. It uses OCaml's stdlib 24[Map](http://caml.inria.fr/pub/docs/manual-ocaml/libref/Map.html) data 25structure. 26""" 27url { 28 src: 29 "https://github.com/hannesm/gmap/releases/download/0.2.1/gmap-0.2.1.tbz" 30 checksum: [ 31 "sha256=3e2af61794c0a04378ad2392be3c8fa2f8ba92f2e8b5b38873a09b2ce6961f8e" 32 "md5=906c84e6a93bcb74b392b12e9c0d9517" 33 ] 34}