this repo has no description
1opam-version: "2.0"
2synopsis: "Adjustable grid (two dimensional array) library"
3description:
4 "Adjustable grids are two dimensional arrays whose width/height can be changed by adding or removing row/column at either end (one at a time)."
5maintainer: ["OCamlPro <contact@ocamlpro.com>"]
6authors: ["OCamlPro <contact@ocamlpro.com>"]
7license: "ISC"
8homepage: "https://github.com/ocamlpro/agrid"
9bug-reports: "https://github.com/ocamlpro/agrid/issues"
10depends: [
11 "ocaml" {>= "4.05"}
12 "dune" {>= "2.7"}
13 "flex-array" {>= "1.2"}
14 "bisect_ppx" {with-test & >= "2.6" & dev}
15 "odoc" {with-doc}
16]
17build: [
18 ["dune" "subst"] {dev}
19 [
20 "dune"
21 "build"
22 "-p"
23 name
24 "-j"
25 jobs
26 "@install"
27 "@runtest" {with-test}
28 "@doc" {with-doc}
29 ]
30]
31dev-repo: "git+https://github.com/ocamlpro/agrid.git"
32url {
33 src: "https://github.com/OCamlPro/agrid/archive/0.1.tar.gz"
34 checksum: [
35 "sha256=ea82546711a6abdd4edf8bc3052041498cae9c2e5a9e147e29820da4eac4beb4"
36 "sha512=f53b2c095e3607e53f92d4e7e13848e9e34bd866837335e7d9341dbb468ac46ffbcd2002d1bf1105e2f6060f57871aef7ce8e65594855447fafb72ad32b076b7"
37 ]
38}