this repo has no description
1opam-version: "2.0" 2maintainer: "Vincent Bernardoff <vb@luminar.eu.org>" 3authors: "Vincent Bernardoff <vb@luminar.eu.org>" 4license: "ISC" 5homepage: "https://github.com/vbmithr/ocaml-msgpck" 6bug-reports: "https://github.com/vbmithr/ocaml-msgpck/issues" 7depends: [ 8 "ocaml" {>= "4.02.0"} 9 "jbuilder" {>= "1.0+beta8"} 10 "ocplib-endian" {>= "1.0"} 11] 12flags: light-uninstall 13build: ["jbuilder" "build" "-p" name "-j" jobs "@install"] 14dev-repo: "git+https://github.com/vbmithr/ocaml-msgpck.git" 15synopsis: "Fast MessagePack (http://msgpack.org) library" 16description: """ 17msgpck is written in pure OCaml. 18 19MessagePack is an efficient binary serialization format. It lets you 20exchange data among multiple languages like JSON. But it's faster and 21smaller. Small integers are encoded into a single byte, and typical 22short strings require only one extra byte in addition to the strings 23themselves.""" 24url { 25 src: "https://github.com/vbmithr/ocaml-msgpck/archive/1.4.tar.gz" 26 checksum: [ 27 "sha256=55116ee64e5d5f585714a3dbb8e68196aaf4fb1c35402f46be0d72d6c7ef0a9d" 28 "md5=13831d57c730b35ab517984d855ec6c0" 29 ] 30}