this repo has no description
1opam-version: "2.0" 2maintainer: "Paul Pelzl <pelzlpj@gmail.com>" 3authors: "Paul Pelzl <pelzlpj@gmail.com>" 4homepage: "https://github.com/capnproto/capnp-ocaml" 5bug-reports: "https://github.com/capnproto/capnp-ocaml/issues" 6dev-repo: "git+https://github.com/capnproto/capnp-ocaml.git" 7build: [ 8 ["jbuilder" "build" "-p" name "-j" jobs] 9 ["jbuilder" "build" "@runtest" "@src/benchmark/benchmarks"] {with-test} 10] 11depends: [ 12 "ocaml" {>= "4.02.0"} 13 "jbuilder" {>= "1.0+beta7"} 14 "result" 15 "core_kernel" {>= "v0.11.0" & < "v0.13"} 16 "extunix" 17 "ocplib-endian" {>= "0.7"} 18 "res" 19 "uint" 20 "core" {with-test & < "v0.12"} 21 "ounit" {with-test} 22 "conf-capnproto" {with-test} 23] 24synopsis: 25 "OCaml code generation plugin for the Cap'n Proto serialization framework" 26description: """ 27Cap'n Proto is a multi-language code generation framework designed for 28high performance through the use of lazy parsing and arena allocation. 29This package provides a plugin for the Cap'n Proto compiler which enables 30OCaml code generation, as well as corresponding runtime library support.""" 31url { 32 src: "https://github.com/capnproto/capnp-ocaml/archive/v3.2.1.tar.gz" 33 checksum: [ 34 "sha256=20221b396b17c654e5d0870761bef50c5a5dc99bc578e31980bac76dae1d3560" 35 "md5=1c8519640a3e5f06c48220d2194d9d36" 36 ] 37}