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" 5license: "ISC" 6dev-repo: "git+https://github.com/vbmithr/ocaml-msgpck.git" 7bug-reports: "https://github.com/vbmithr/ocaml-msgpck/issues" 8doc: "https://vbmithr.github.io/ocaml-msgpck/doc" 9tags: ["messagepack" "msgpack" "binary" "serialization"] 10depends: [ 11 "dune" {>= "1.11.4"} 12 "ocplib-endian" {>= "1.0"} 13 "ocaml" {>= "4.08.0"} 14 "alcotest" {with-test & >= "0.8.5"} 15] 16build: [ "dune" "build" "-p" name "-j" jobs ] 17run-test: [ "dune" "runtest" "-p" name "-j" jobs ] 18 19synopsis: "Fast MessagePack (http://msgpack.org) library" 20description: """ 21msgpck is written in pure OCaml. 22 23MessagePack is an efficient binary serialization format. It lets you 24exchange data among multiple languages like JSON. But it's faster and 25smaller. Small integers are encoded into a single byte, and typical 26short strings require only one extra byte in addition to the strings 27themselves.""" 28x-commit-hash: "f5568b7915cedd0999bdf29b9d026cd078b00472" 29url { 30 src: 31 "https://github.com/vbmithr/ocaml-msgpck/releases/download/1.7/msgpck-v1.7.tbz" 32 checksum: [ 33 "sha256=ff7065bf590af502a1b1622ff3b5280805c122033d68cf6b53da32c31ecb5f5d" 34 "sha512=7d71baa9614f890f669bb52181a295e51d6735ab9786fd7bc69c123721f801232a314ec98b8e59ccf8d2c1541f8fcc084ebf1d47189fd45632621c4a246d0368" 35 ] 36}