this repo has no description
1opam-version: "2.0"
2maintainer: "rudi.grinberg@gmail.com"
3authors: ["Thibault Suzanne" "Gabriel Scherer" "Rudi Grinberg"]
4homepage: "https://github.com/rgrinberg/ocaml-hamt"
5bug-reports: "https://github.com/rgrinberg/ocaml-hamt/issues"
6license: "MIT"
7dev-repo: "git+https://github.com/rgrinberg/ocaml-hamt.git"
8build: [
9 [make "configure"]
10 [make "build"]
11 [make "doc"] {with-doc}
12]
13install: [make "install"]
14remove: ["ocamlfind" "remove" "hamt"]
15depends: [
16 "ocaml" {>= "4.01.0" & < "5.0"}
17 "ocamlfind" {build}
18 "ocamlbuild" {build}
19]
20synopsis: "Hash Array Mapped Tries"
21description: """
22HAMT data structure implemented in OCaml
23
24http://gallium.inria.fr/blog/implementing-hamt-for-ocaml/"""
25flags: light-uninstall
26url {
27 src: "https://github.com/rgrinberg/ocaml-hamt/archive/1.0.0.tar.gz"
28 checksum: [
29 "sha256=824d23579182821dedf4d44ff8007934be560338109ac90a172588b2e27676a2"
30 "md5=47b2625ffcede0652d0e9b4e2ba13722"
31 ]
32}