this repo has no description
1opam-version: "2.0"
2license: "LGPL-2.1-only"
3maintainer: "Florian Angeletti <octa@polychoron.fr>"
4authors: "Florian Angeletti <octa@polychoron.fr>"
5homepage: "https://github.com/Octachron/orec"
6bug-reports: "https://github.com/Octachron/orec/issues"
7dev-repo: "git+https://github.com/Octachron/orec"
8build: [
9 ["dune" "build" "-p" name "-j" jobs]
10 [ "dune" "build" "-p" name "-j" jobs "@doc" ] {with-doc}
11]
12depends: [
13 "ocaml" {>= "4.06.0"}
14 "dune" {>= "1.0" }
15]
16synopsis: "dynamic open records"
17description: """
18Orec's open records make it possible to dynamically create, access,
19update, and assign fields of an "open record" value with a syntax
20somewhat similar to the normal record syntax.
21
22The underlying implementation relies on heterogeneous maps for storing
23the field data and a liberal use of GADTs and extended indexing
24operators to expose a higher-level interface on the top of those
25hetereogeneous maps."""
26
27url {
28 src: "https://github.com/Octachron/orec/archive/1.0.1.zip"
29 checksum: "sha256=f9b636ad578986d26fa45b437f1c825b4c04aa8da620a3df885145109d293326"
30}