this repo has no description
1opam-version: "2.0"
2synopsis: "Dynamic type representations. Provides no stability guarantee"
3description: """
4This package defines a library of combinators for building dynamic type
5representations and a set of generic operations over representable types, used
6in the implementation of Irmin and related packages.
7
8It is not yet intended for public consumption and provides no stability
9guarantee.
10"""
11maintainer: ["thomas@gazagnaire.org"]
12authors: ["Thomas Gazagnaire" "Craig Ferguson"]
13license: "ISC"
14homepage: "https://github.com/mirage/repr"
15bug-reports: "https://github.com/mirage/repr/issues"
16depends: [
17 "dune" {>= "2.7"}
18 "ocaml" {>= "4.08.0"}
19 "fmt" {>= "0.8.7"}
20 "uutf"
21 "either"
22 "jsonm" {>= "1.0.0"}
23 "base64" {>= "3.0.0"}
24 "odoc" {with-doc}
25]
26build: [
27 ["dune" "subst"] {dev}
28 [
29 "dune"
30 "build"
31 "-p"
32 name
33 "-j"
34 jobs
35 "@install"
36 "@runtest" {with-test}
37 "@doc" {with-doc}
38 ]
39]
40dev-repo: "git+https://github.com/mirage/repr.git"
41x-commit-hash: "4580711e964edcbb0cbced99cb4d456ca453c1c9"
42url {
43 src:
44 "https://github.com/mirage/repr/releases/download/0.2.1/repr-fuzz-0.2.1.tbz"
45 checksum: [
46 "sha256=0ca29b7273870190b724e6db1f782980c175c50d9a208ff8ad351cbbb85a7fb1"
47 "sha512=5b7d32724e70ffcbc15bdefc71871148d0f2b743f6d664891e1126d194d3752dfb7715dbbe6046bcbd6f19c384a840b3e66c4130b5bb663580aeb6d697d7a20d"
48 ]
49}