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"
15doc: "https://mirage.github.io/repr"
16bug-reports: "https://github.com/mirage/repr/issues"
17depends: [
18 "dune" {>= "2.7"}
19 "ocaml" {>= "4.08.0"}
20 "fmt" {>= "0.8.7"}
21 "uutf"
22 "either"
23 "jsonm" {>= "1.0.0"}
24 "base64" {>= "3.0.0"}
25 "odoc" {with-doc}
26]
27build: [
28 ["dune" "subst"] {dev}
29 [
30 "dune"
31 "build"
32 "-p"
33 name
34 "-j"
35 jobs
36 "@install"
37 "@runtest" {with-test}
38 "@doc" {with-doc}
39 ]
40]
41dev-repo: "git+https://github.com/mirage/repr.git"
42x-commit-hash: "f79f95e20ea37f052d170c3d36dac9f0e5966039"
43url {
44 src:
45 "https://github.com/mirage/repr/releases/download/0.4.0/repr-fuzz-0.4.0.tbz"
46 checksum: [
47 "sha256=1791765a495981cc69c0d591ef06831ca158d85192c6631b4838b3ee997dfcce"
48 "sha512=09fac16a9d4df87bf68b275b032407ddd281beadd2881f848fc2e58d5205538b2a9c3ad6743de268ce70838defcc72de49c1f7e3b02ac590f2ff187fcf0abfab"
49 ]
50}