From a60c15d9de15817e7a2f402694b6ef854f448fe8 Mon Sep 17 00:00:00 2001 From: Steve Bleazard Date: Fri, 2 Feb 2018 07:11:42 +0000 Subject: [PATCH] added an opam .descr file --- json_of_jsonm.descr | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 json_of_jsonm.descr diff --git a/json_of_jsonm.descr b/json_of_jsonm.descr new file mode 100644 index 0000000..7fdd648 --- /dev/null +++ b/json_of_jsonm.descr @@ -0,0 +1,11 @@ +json_of_jsonm_lib is a JSON encoder and decoder library that converts text to and from a +`json` type. The library has the following features: + +* Uses jsonm to do the actual stream encoding and decoding +* The `json` type is compatible with and a subset of yojson's `json` type +* Provides both string and channel interfaces by default +* The Json_string module provides a standard type `t` interface in addition to the + `json` type +* Both `result` and exception functions are provided in most cases +* The Json_encoder_decoder functor allows additional IO mechanisms, including Async, + to be defined easily.