Bitlevel streams for OCaml
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 34 lines 973 B view raw
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "Bit-level I/O for binary format parsing and generation" 4description: """ 5Forward and backward bitstream reading/writing for binary formats. 6Supports bit-level operations required by compression algorithms like 7FSE, ANS, and Huffman coding.""" 8maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 9authors: ["Anil Madhavapeddy <anil@recoil.org>"] 10license: "ISC" 11homepage: "https://tangled.org/anil.recoil.org/ocaml-bitstream" 12bug-reports: "https://tangled.org/anil.recoil.org/ocaml-bitstream/issues" 13depends: [ 14 "dune" {>= "3.21"} 15 "ocaml" {>= "5.2.0"} 16 "alcotest" {with-test & >= "1.7.0"} 17 "odoc" {with-doc} 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] 33dev-repo: "git+https://tangled.org/anil.recoil.org/ocaml-bitstream" 34x-maintenance-intent: ["(latest)"]