this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/bin_prot" 5bug-reports: "https://github.com/janestreet/bin_prot/issues" 6dev-repo: "git+https://github.com/janestreet/bin_prot.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/bin_prot/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.04.2"} 14 "base" {>= "v0.13" & < "v0.14"} 15 "ppx_compare" {>= "v0.13" & < "v0.14"} 16 "ppx_custom_printf" {>= "v0.13" & < "v0.14"} 17 "ppx_fields_conv" {>= "v0.13" & < "v0.14"} 18 "ppx_sexp_conv" {>= "v0.13" & < "v0.14"} 19 "ppx_variants_conv" {>= "v0.13" & < "v0.14"} 20 "dune" {>= "1.5.1"} 21] 22depopts: [ 23 "mirage-xen-ocaml" 24] 25synopsis: "A binary protocol generator" 26description: " 27Part of Jane Street's Core library 28The Core suite of libraries is an industrial strength alternative to 29OCaml's standard library that was developed by Jane Street, the 30largest industrial user of OCaml. 31" 32url { 33 src: 34 "https://ocaml.janestreet.com/ocaml-core/v0.13/files/bin_prot-v0.13.0.tar.gz" 35 checksum: [ 36 "sha256=37eeca1c1a099475473cc7ef10a967b7ef2f0c5d3aadb068b4d3680b4ca0d0a4" 37 "md5=2262cf69d1b989cdcf75055102472d74" 38 ] 39}