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" {>= "5.1.0"} 14 "base" {>= "v0.17" & < "v0.18"} 15 "ppx_compare" {>= "v0.17" & < "v0.18"} 16 "ppx_custom_printf" {>= "v0.17" & < "v0.18"} 17 "ppx_fields_conv" {>= "v0.17" & < "v0.18"} 18 "ppx_optcomp" {>= "v0.17" & < "v0.18"} 19 "ppx_sexp_conv" {>= "v0.17" & < "v0.18"} 20 "ppx_stable_witness" {>= "v0.17" & < "v0.18"} 21 "ppx_variants_conv" {>= "v0.17" & < "v0.18"} 22 "dune" {>= "3.11.0"} 23] 24depopts: [ 25 "mirage-xen-ocaml" 26] 27available: arch != "x86_32" & os != "freebsd" 28synopsis: "A binary protocol generator" 29description: " 30Part of Jane Street's Core library 31The Core suite of libraries is an industrial strength alternative to 32OCaml's standard library that was developed by Jane Street, the 33largest industrial user of OCaml. 34" 35url { 36src: "https://github.com/janestreet/bin_prot/archive/refs/tags/v0.17.0.tar.gz" 37checksum: "sha256=0e6c61aff150d19a0f89cb3e354ab36189e4bc23e28ab8bce03b6c6b6004f237" 38}