OCaml library for Crockford's Base32
1(lang dune 3.18)
2
3(name crockford)
4
5(generate_opam_files true)
6
7(license ISC)
8(authors "Anil Madhavapeddy")
9(homepage "https://tangled.org/@anil.recoil.org/ocaml-crockford")
10(maintainers "Anil Madhavapeddy <anil@recoil.org>")
11(bug_reports "https://tangled.org/@anil.recoil.org/ocaml-crockford/issues")
12(maintenance_intent "(latest)")
13
14(package
15 (name crockford)
16 (synopsis "Crockford Base32 encoding for OCaml")
17 (description
18 "An OCaml implementation of Douglas Crockford's Base32 encoding with \
19 ISO 7064 checksum support. Provides encoding and decoding of int64 values \
20 to URI-friendly base32 strings, with optional checksum validation, padding, \
21 splitting, and random ID generation.")
22 (depends
23 (ocaml (>= 4.14.1))
24 (odoc :with-doc)
25 (alcotest (and :with-test (>= 1.9.0)))
26 (cmdliner (>= 1.1.0))))