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.02.0"}
17 "ocamlfind" {build}
18 "ocamlbuild" {build}
19 "ounit" {with-test}
20 "yojson" {< "2.0.0"}
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.5.0.tar.gz"
32 checksum: [
33 "sha256=0b40f8b3b53210f6ab226b100d7ed2c617300221d36e78cdf6578d82651b1d37"
34 "md5=260af3bc1c1c1435cb42d902609bc6b2"
35 ]
36}