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 "optint" {>= "0.1.0"} 26 "odoc" {with-doc} 27] 28build: [ 29 ["dune" "subst"] {dev} 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "@install" 38 "@runtest" {with-test} 39 "@doc" {with-doc} 40 ] 41] 42dev-repo: "git+https://github.com/mirage/repr.git" 43url { 44 src: 45 "https://github.com/mirage/repr/releases/download/0.6.0/repr-fuzz-0.6.0.tbz" 46 checksum: [ 47 "sha256=bb8a0f94df002fc19dcb598834271eaddeffa1d57041491ff3d2b9e3e80d075e" 48 "sha512=2218845ba1b42e3983bc9727879c704433571655c85251c43edb9bf85ceec35c3b662091e32a744a5340a9c641b1cb5fa591389a68832faf0bb71981d6d91e1d" 49 ] 50} 51x-commit-hash: "00858ff36107b41880269b240262e5e9d4724687"