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 ["jbuilder" "build" "-p" name "-j" jobs] 10 ["jbuilder" "build" "-p" name "-j" jobs "@doc"] {with-doc} 11] 12depends: [ 13 "ocaml" {>= "4.06.0"} 14 "jbuilder" {>= "1.0+beta7"} 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.""" 26url { 27 src: "https://github.com/Octachron/orec/archive/1.0.zip" 28 checksum: [ 29 "sha256=927b7dd79cbb4316ebe2d1051623294ef25eedf7ec7cf711f714b71d0ae5791c" 30 "md5=a80a5bae704e77d578a415a489c6c507" 31 ] 32}