this repo has no description
1opam-version: "2.0" 2maintainer: "mirageos-devel@lists.xenproject.org" 3authors: [ "Thomas Gazagnaire" 4 "Anil Madhavapeddy" "Calascibetta Romain" 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 "dune" {>= "2.0"} 20 "bos" {with-test} 21 "rresult" {with-test} 22 "alcotest" {with-test} 23 "base-bytes" 24] 25build: [ 26 ["dune" "subst"] {dev} 27 ["dune" "build" "-p" name "-j" jobs] 28 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 29] 30x-commit-hash: "3a5e259895acef979a0fab8bb59d396e1bccead0" 31url { 32 src: 33 "https://github.com/mirage/ocaml-base64/releases/download/v3.5.0/base64-v3.5.0.tbz" 34 checksum: [ 35 "sha256=589de9c00578ebfe784198ac9818d3586c474b2316b6cd3e1c46ccb1f62ae3a4" 36 "sha512=82efc76ca75717dbd533eac20845ca8731f535233f6a3e6081114d7e3dc7ee8367ded16f402ef05ad0bf1217a3a6224161c92b9467023e44fc7f3598a314a432" 37 ] 38}