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: "https://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.3"}
20 "fmt" {with-test & >= "0.8.7"}
21 "bos" {with-test}
22 "rresult" {with-test}
23 "alcotest" {with-test}
24]
25build: [
26 ["dune" "subst"] {dev}
27 ["dune" "build" "-p" name "-j" jobs]
28 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
29]
30url {
31 src:
32 "https://github.com/mirage/ocaml-base64/releases/download/v3.5.1/base64-3.5.1.tbz"
33 checksum: [
34 "sha256=d8fedaa59bd12feae7acc08b5928dd478aac523f4ca8d240470d2500651c65ed"
35 "sha512=278bd2029800d90ed88ff59b9de723013e645523556a1667b64178d6b5058a7d6da91efffef3589c35569b5fa10ddee74c93f5a3d156b9146c8af5b7fe44aeaf"
36 ]
37}
38x-commit-hash: "084346f14ed1e6706d733402dd6ff65b0dc4f718"