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.3.tar.gz"
26 checksum: [
27 "sha256=945294366ef9774b9205398706b0dbf476e8c6eaf1fe6152f3ca731f840e5a42"
28 "md5=e5f2fc466454587727a64afa52329665"
29 ]
30}