this repo has no description
1opam-version: "2.0" 2maintainer: "Steve Bleazard <stevebleazard@googlemail.com>" 3authors: "Steve Bleazard <stevebleazard@googlemail.com>" 4homepage: "https://www.github.com/stevebleazard/ocaml-json-of-jsonm" 5bug-reports: "https://www.github.com/stevebleazard/ocaml-json-of-jsonm/issues" 6license: "MIT" 7dev-repo: "git+https://www.github.com/stevebleazard/ocaml-json-of-jsonm.git" 8doc: "https://stevebleazard.github.io/ocaml-json-of-jsonm/" 9build: [ 10 ["jbuilder" "build" "-p" name "-j" jobs "@install"] 11] 12 13depends: [ 14 "ocaml" {>= "4.03.0"} 15 "jbuilder" {>= "1.0+beta7"} 16 "jsonm" 17] 18synopsis: 19 "json_of_jsonm_lib is a JSON encoder and decoder library that converts text to and from a" 20description: """ 21`json` type. The library has the following features: 22 23* Uses jsonm to do the actual stream encoding and decoding 24* The `json` type is compatible with and a subset of yojson's `json` type 25* Provides both string and channel interfaces by default 26* The Json_string module provides a standard type `t` interface in addition to the 27 `json` type 28* Both `result` and exception functions are provided in most cases 29* The Json_encoder_decoder functor allows additional IO mechanisms, including Async, 30 to be defined easily.""" 31url { 32 src: 33 "https://www.github.com/stevebleazard/ocaml-json-of-jsonm/releases/download/v1.0.0/json_of_jsonm-1.0.0.tbz" 34 checksum: [ 35 "sha256=0c9a8156a1ed0a5bd7f9eea1375f1828d48aed4a2fb88a9bedc484ea5ff75a5d" 36 "md5=1503d4bcb108325c723405271f32bc56" 37 ] 38}