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" 43x-commit-hash: "eb53a14928eeaa70e80402380481add5bd7911be" 44url { 45 src: 46 "https://github.com/mirage/repr/releases/download/0.5.0/repr-fuzz-0.5.0.tbz" 47 checksum: [ 48 "sha256=2ed0e1dab950eeb551cbecc3bbc5ddb584b3b3e4b4e039ff3abf7bd6d5b238f9" 49 "sha512=bacfef83e5bd2b12a7ccd514ba92525030cdcf85ba1121e9456db7f327c434db599a47667ca9826ab77ed95e0f946347e027bc6c18420c6a8faabf4a491a2a7a" 50 ] 51}