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" 41url { 42 src: 43 "https://github.com/mirage/repr/releases/download/0.3.0/repr-fuzz-0.3.0.tbz" 44 checksum: [ 45 "sha256=d9bd2fe51c2eb6fca27731034c46f9a77dc8bc9fb7b76216f8a571603d6e7d74" 46 "sha512=7b4ad2cbcd92f6647a1abe1d82557f02e4955c5f37f02089388c752e23b865af0f55fdd6bc63a1d2a00962baf96ccd99ccd9b8ecd8898dcc2a0cd17302f067c3" 47 ] 48} 49x-commit-hash: "d410d610bc45ee42ac95f17b931be414dc007f7c"