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" {>= "1.0"} 11 "alcotest" {with-test} 12 "fmt" {with-test} 13] 14build: [ 15 ["dune" "subst"] {dev} 16 ["dune" "build" "-p" name "-j" jobs] 17 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 18] 19dev-repo: "git+https://github.com/hannesm/gmap.git" 20synopsis: "Heterogenous maps over a GADT" 21description: """ 22Gmap exposes the functor `Make` which takes a key type (a 23[GADT](https://en.wikipedia.org/wiki/Generalized_algebraic_data_type) 'a key) 24and outputs a type-safe Map where each 'a key is associated with a 'a value. 25This removes the need for additional packing. It uses OCaml's stdlib 26[Map](http://caml.inria.fr/pub/docs/manual-ocaml/libref/Map.html) data 27structure. 28""" 29url { 30 src: 31 "https://github.com/hannesm/gmap/releases/download/0.3.0/gmap-0.3.0.tbz" 32 checksum: [ 33 "sha256=04dd9e6226ac8f8fb4ccb6021048702e34a482fb9c1d240d3852829529507c1c" 34 "sha512=71616981f5a15d6b2a47e18702083e52e81f6547076085b1489f676f50b0cc47c7c2c4fa19cb581e2878dc3d4f7133d0c50d8b51a8390be0e6e30318907d81d3" 35 ] 36} 37x-maintenance-intent: [ "(latest)" ]