this repo has no description
1opam-version: "2.0"
2maintainer: "ygrek@autistici.org"
3homepage: "https://github.com/mfp/extprot"
4license: "MIT"
5authors: ["Mauricio Fernandez <mfp@acm.org>"]
6doc: ["https://github.com/mfp/extprot/blob/master/README.md"]
7dev-repo: "git+https://github.com/mfp/extprot.git"
8bug-reports: "https://github.com/mfp/extprot/issues"
9build: [
10 ["omake"]
11 ["omake" "test"] {with-test}
12]
13install: [
14 ["omake" "install" "prefix=%{prefix}%"]
15]
16depends: [
17 "ocaml" {>= "4.03.0"}
18 "omake" {build}
19 "ocamlfind" {build}
20 "ounit" {with-test}
21 "base64" {with-test}
22 "camlp4" {build}
23 "extlib" {>= "1.7.8"}
24 "base-bytes"
25]
26synopsis:
27 "Extensible binary protocols for cross-language communication and long-term serialization"
28description: """
29extprot allows you to create compact, efficient, extensible, binary protocols that can
30be used for cross-language communication and long-term data serialization.
31extprot supports protocols with rich, composable types, whose definition can evolve
32while keeping both forward and backward compatibility."""
33url {
34 src:
35 "https://github.com/mfp/extprot/releases/download/v1.7.0/extprot-1.7.0.tar.gz"
36 checksum: [
37 "sha256=1ed962b1f0960818c103ea2bbce707b9066c8d01c5032fef477b7507afe784e9"
38 "md5=12acd1466af6feaced5f2836b703b33d"
39 ]
40}