-
Notifications
You must be signed in to change notification settings - Fork 20
/
capnp.opam
32 lines (32 loc) · 1.05 KB
/
capnp.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
opam-version: "2.0"
name: "capnp"
maintainer: "Paul Pelzl <[email protected]>"
authors: "Paul Pelzl <[email protected]>"
homepage: "https://github.com/capnproto/capnp-ocaml"
bug-reports: "https://github.com/capnproto/capnp-ocaml/issues"
license: "BSD-2-Clause"
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.3"}
"result"
"base" {>= "v0.11"}
"stdio"
"base_quickcheck" {with-test}
"ocplib-endian" {>= "0.7"}
"res"
"stdint" {>= "0.5.1"}
"ounit2" {with-test}
"conf-capnproto" {with-test}
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "-p" name "-j" jobs "@runtest"] {with-test}
]
dev-repo: "git+https://github.com/capnproto/capnp-ocaml.git"
synopsis:
"OCaml code generation plugin for the Cap'n Proto serialization framework"
description: """
Cap'n Proto is a multi-language code generation framework designed for
high performance through the use of lazy parsing and arena allocation.
This package provides a plugin for the Cap'n Proto compiler which enables
OCaml code generation, as well as corresponding runtime library support."""