-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathbin_prot.opam
More file actions
34 lines (34 loc) · 1001 Bytes
/
bin_prot.opam
File metadata and controls
34 lines (34 loc) · 1001 Bytes
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
33
34
opam-version: "2.0"
maintainer: "Jane Street developers"
authors: ["Jane Street Group, LLC"]
homepage: "https://github.com/janestreet/bin_prot"
bug-reports: "https://github.com/janestreet/bin_prot/issues"
dev-repo: "git+https://github.com/janestreet/bin_prot.git"
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/bin_prot/index.html"
license: "MIT"
x-maintenance-intent: ["(latest)"]
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "5.1.0"}
"base"
"ppx_compare"
"ppx_custom_printf"
"ppx_fields_conv"
"ppx_globalize"
"ppx_optcomp"
"ppx_sexp_conv"
"ppx_stable_witness"
"ppx_template"
"ppx_variants_conv"
"dune" {>= "3.17.0"}
]
available: arch != "arm32" & arch != "x86_32"
synopsis: "A binary protocol generator"
description: "
Part of Jane Street's Core library
The Core suite of libraries is an industrial strength alternative to
OCaml's standard library that was developed by Jane Street, the
largest industrial user of OCaml.
"