this repo has no description
1opam-version: "2.0" 2synopsis: "An HPACK (Header Compression for HTTP/2) implementation in OCaml" 3description: 4 "hpack is an implementation of the HPACK: Header Compression for HTTP/2 specification (RFC7541) written in OCaml. It uses Angstrom and Faraday for parsing and serialization, respectively." 5maintainer: ["Antonio Nuno Monteiro <anmonteiro@gmail.com>"] 6authors: ["Antonio Nuno Monteiro <anmonteiro@gmail.com>"] 7license: "BSD-3-clause" 8homepage: "https://github.com/anmonteiro/ocaml-h2" 9bug-reports: "https://github.com/anmonteiro/ocaml-h2/issues" 10depends: [ 11 "dune" {>= "2.7"} 12 "ocaml" {>= "4.08.0" & < "5.3"} 13 "angstrom" 14 "faraday" {>= "0.7.3"} 15 "yojson" {with-test} 16 "hex" {with-test} 17 "odoc" {with-doc} 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@doc" {with-doc} 30 ] 31] 32dev-repo: "git+https://github.com/anmonteiro/ocaml-h2.git" 33url { 34 src: 35 "https://github.com/anmonteiro/ocaml-h2/releases/download/0.11.0/h2-0.11.0.tbz" 36 checksum: [ 37 "sha256=19d5f06b39600eeae3cf2ede90ba6e3240a28bc5be17f8e5fc806ffd64c78053" 38 "sha512=aafcb9df5dc76aa4050613696303fc0581e40c28707265672d378f0128fbb717fbbb9214a7557c124c8196e41cfaba4bb190755a7a94afcadd4ae15a64ae01fc" 39 ] 40} 41x-commit-hash: "c694398c1b429db622638e94f9a6f8fbce2a208a"