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.7.0/repr-0.7.0.tbz" 46 checksum: [ 47 "sha256=8adac9fe85bf8a0e20eeb6810d7216e98e1b7f4d9bd399e61bb1024ace2501ac" 48 "sha512=5b104c52a05a3ed7a4505dea3b3b7ee16bba020b5d2d8e4dfd680ff8f82ae021caf0f29207616ac2ae40dfd5bb641a144e31b11d29c5ba4918ba616a57f74647" 49 ] 50} 51x-commit-hash: "953d46ab9254ca89a4410a1cc4b240ce5be10b2a" 52x-maintenance-intent: [ "(latest)" ]