Bitlevel streams for OCaml
at main 20 lines 585 B view raw
1(lang dune 3.21) 2(name bitstream) 3 4(generate_opam_files true) 5 6(license ISC) 7(authors "Anil Madhavapeddy <anil@recoil.org>") 8(maintainers "Anil Madhavapeddy <anil@recoil.org>") 9(source (tangled anil.recoil.org/ocaml-bitstream)) 10 11(package 12 (name bitstream) 13 (synopsis "Bit-level I/O for binary format parsing and generation") 14 (description 15 "Forward and backward bitstream reading/writing for binary formats. 16Supports bit-level operations required by compression algorithms like 17FSE, ANS, and Huffman coding.") 18 (depends 19 (ocaml (>= 5.2.0)) 20 (alcotest (and :with-test (>= 1.7.0)))))