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.00.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.2.0.tar.gz"
31 checksum: [
32 "sha256=752cd9bbde0608ab715d36c0aee818c336f2ca5b7c57d828a3c75aa7d81896dd"
33 "md5=ec836339c5c10aafe79f9d26eee3cb96"
34 ]
35}