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] {ocaml:native}
10 [make "byte"] {!ocaml:native}
11 [make "check"] {with-test}
12]
13install: [make "install"]
14remove: ["ocamlfind" "remove" "records"]
15depends: [
16 "ocaml" {>= "4.00.0"}
17 "ocamlfind" {build}
18 "ounit" {with-test}
19 "yojson" {< "2.0.0"}
20 "ocamlbuild" {build}
21]
22depopts: [
23 "bisect_ppx" {with-test}
24]
25synopsis: "Dynamic records"
26description: """
27This library makes it possible to create first-class record types and fields.
28These can be defined at runtime and provide efficient access."""
29flags: light-uninstall
30url {
31 src: "https://github.com/cryptosense/records/archive/v0.3.1.tar.gz"
32 checksum: [
33 "sha256=e28a69e4bd724acfdd1468cf66e1a06db0401ad93ff7820a803befc9b0710b10"
34 "md5=7d071d50958fb4fcb7c747efb4fa93b6"
35 ]
36}