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