this repo has no description
1opam-version: "2.0" 2maintainer: "Etienne Millon <etienne@cryptosense.com>" 3authors: "Etienne Millon <etienne@cryptosense.com>" 4homepage: "https://github.com/cryptosense/records" 5bug-reports: "https://github.com/cryptosense/records/issues" 6license: "BSD-2-Clause" 7dev-repo: "git+https://github.com/cryptosense/records.git" 8build: [ 9 [make] 10 [make "check"] {with-test} 11] 12install: [make "install"] 13remove: ["ocamlfind" "remove" "records"] 14depends: [ 15 "ocaml" {>= "4.01.0"} 16 "ocamlfind" {build} 17 "ounit" {with-test} 18 "yojson" {< "2.0.0"} 19 "ocamlbuild" {build} 20] 21depopts: [ 22 "bisect_ppx" {with-test} 23] 24synopsis: "Dynamic records" 25description: """ 26This library makes it possible to create first-class record types and fields. 27These can be defined at runtime and provide efficient access.""" 28flags: light-uninstall 29url { 30 src: "https://github.com/cryptosense/records/archive/v0.1.0.tar.gz" 31 checksum: [ 32 "sha256=01fa3d561dbbda451b99d9dfc15db3e504ec07d109420b6082c9fbb296629d21" 33 "md5=81621f380af1e1bee85e2022903569d7" 34 ] 35}