this repo has no description
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Base32 encoding for OCaml" 4description: """ 5Base32 is a binary-to-text encoding that represents binary data in an ASCII string format by translating it into a radix-32 representation. It is specified in RFC 4648. 6This library provides an OCaml implementation of Base32. 7""" 8maintainer: ["pukkamustard <pukkamustard@posteo.net>"] 9authors: ["pukkamustard <pukkamustard@posteo.net>"] 10license: "ISC" 11homepage: "https://inqlab.net/git/ocaml-base32.git" 12bug-reports: "mailto:pukkamustard@posteo.net" 13depends: [ 14 "dune" {>= "2.7"} 15 "ocaml" {>= "4.04.0"} 16 "alcotest" {with-test} 17 "qcheck" {with-test} 18 "qcheck-alcotest" {with-test} 19 "odoc" {with-doc} 20] 21build: [ 22 ["dune" "subst"] {dev} 23 [ 24 "dune" 25 "build" 26 "-p" 27 name 28 "-j" 29 jobs 30 "@install" 31 "@runtest" {with-test} 32 "@doc" {with-doc} 33 ] 34] 35dev-repo: "git+https://inqlab.net/git/ocaml-base32.git" 36url { 37 src: "https://github.com/ocaml/opam-source-archives/raw/main/base32-1.0.0.tar.gz" 38 checksum: [ 39 "md5=04f0113150261bae2075381c18c6e60c" 40 "sha512=4c07480b52d84619befe6d898ba6d771f633383c57a636f13f525e74f9f4fe90442fb7de0d1581626576925010bd3bf227bbf81ee75a85288b04c5eee827014b" 41 ] 42}