this repo has no description
1opam-version: "2.0" 2maintainer: "mirageos-devel@lists.xenproject.org" 3authors: [ "Thomas Gazagnaire" 4 "Anil Madhavapeddy" 5 "Peter Zotov" ] 6license: "ISC" 7homepage: "https://github.com/mirage/ocaml-base64" 8doc: "http://mirage.github.io/ocaml-base64/" 9bug-reports: "https://github.com/mirage/ocaml-base64/issues" 10dev-repo: "git+https://github.com/mirage/ocaml-base64.git" 11synopsis: "Base64 encoding for OCaml" 12description: """ 13Base64 is a group of similar binary-to-text encoding schemes that represent 14binary data in an ASCII string format by translating it into a radix-64 15representation. It is specified in RFC 4648. 16""" 17depends: [ 18 "ocaml" {>="4.03.0"} 19 "base-bytes" 20 "dune" {>= "1.0.1"} 21 "bos" {with-test} 22 "rresult" {with-test} 23 "alcotest" {with-test} 24] 25build: [ 26 ["dune" "subst"] 27 ["dune" "build" "-p" name "-j" jobs] 28 ["dune" "runtest" "-p" name] {with-test} 29] 30url { 31 src: 32 "https://github.com/mirage/ocaml-base64/releases/download/v3.1.0/base64-v3.1.0.tbz" 33 checksum: [ 34 "sha256=48dc1d7133bbcbc17dd71db6763ce289367cf54a38a170c0439ee9e61fc6556f" 35 "md5=9847073feb4272e513d8c832904e1af7" 36 ] 37}