From a0c885951977773a91be0ffa56ccdc75d3924c85 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Wed, 21 Sep 2022 13:17:27 -0400 Subject: [PATCH] list codec libraries in readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 4d362a0e..b286b15b 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,10 @@ Containers is: - A separate library for threaded programming in `containers-thread`, including a blocking queue, semaphores, an extension of `Mutex`, and thread-pool based futures. This is in its own package since 3.0. +- A bencode codec in `containers.bencode`. This is a tiny json-like + serialization format that is extremely simple. It comes from bittorrent files. +- A [CBOR](https://cbor.io) codec in `containers.cbor`. This is a + compact binary serialization format. Some of the modules have been moved to their own repository (e.g. `sequence` (now `iter`), `gen`, `qcheck`) and are on opam for great fun and profit.