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