···11+# ocaml-zstd
22+33+**Status: STUB PROJECT**
44+55+## Overview
66+77+OCaml bindings for Zstandard (zstd) compression algorithm.
88+99+## Vendored C Reference
1010+1111+- `vendor/git/zstd-c/` - Zstandard C library from https://github.com/facebook/zstd
1212+1313+## TODO
1414+1515+- [ ] Create OCaml bindings for zstd compression/decompression
1616+- [ ] Add bytesrw integration for streaming compression
1717+- [ ] Add dictionary compression support
1818+- [ ] Write tests and benchmarks
1919+- [ ] Consider pure OCaml port for portability
2020+2121+## Notes
2222+2323+Zstandard is a fast lossless compression algorithm developed by Facebook.
2424+It provides high compression ratios and very fast decompression.
2525+It's commonly used in Apache Parquet and other data formats.
2626+2727+## Existing OCaml Bindings
2828+2929+Note: There is an existing `ocaml-zstd` opam package (https://github.com/ygrek/ocaml-zstd)
3030+that provides bindings. This project may build on or replace that implementation.