OCaml library for Crockford's Base32
at main 1.1 kB view raw
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Crockford Base32 encoding for OCaml" 4description: 5 "An OCaml implementation of Douglas Crockford's Base32 encoding with ISO 7064 checksum support. Provides encoding and decoding of int64 values to URI-friendly base32 strings, with optional checksum validation, padding, splitting, and random ID generation." 6maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 7authors: ["Anil Madhavapeddy"] 8license: "MIT" 9homepage: "https://tangled.org/@anil.recoil.org/ocaml-crockford" 10doc: "https://tangled.org/@anil.recoil.org/ocaml-crockford" 11bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-crockford/issues" 12depends: [ 13 "dune" {>= "3.18"} 14 "ocaml" {>= "4.14.1"} 15 "odoc" {with-doc} 16 "alcotest" {with-test & >= "1.5.0"} 17 "cmdliner" {>= "1.1.0"} 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@runtest" {with-test} 30 "@doc" {with-doc} 31 ] 32] 33x-maintenance-intent: ["(latest)"] 34dev-repo: "git+https://tangled.sh/@anil.recoil.org/ocaml-crockford"