this repo has no description
1opam-version: "2.0" 2maintainer: "Antonio Nuno Monteiro <anmonteiro@gmail.com>" 3authors: [ "Pieter Goetschalckx <3.14.e.ter@gmail.com>" 4 "Antonio Nuno Monteiro <anmonteiro@gmail.com>" ] 5license: "BSD-3-Clause" 6homepage: "https://github.com/anmonteiro/ocaml-h2" 7bug-reports: "https://github.com/anmonteiro/ocaml-h2/issues" 8dev-repo: "git+https://github.com/anmonteiro/ocaml-h2.git" 9doc: "https://anmonteiro.github.io/ocaml-h2/" 10depends: [ 11 "ocaml" {>= "4.04" & < "5.3"} 12 "dune" {>= "1.7"} 13 "yojson" {with-test} 14 "hex" {with-test} 15 "angstrom" {>= "0.2.0"} 16 "faraday" 17] 18build: [ 19 ["dune" "build" "-p" name "-j" jobs] 20] 21synopsis: 22 "An HPACK (Header Compression for HTTP/2) implementation in OCaml" 23description: """ 24hpack is an implementation of the HPACK: Header Compression for HTTP/2 25specification (RFC7541) written in OCaml. It uses Angstrom and Faraday for 26parsing and serialization, respectively. 27""" 28url { 29 src: 30 "https://github.com/anmonteiro/ocaml-h2/releases/download/0.2.0/h2-0.2.0.tbz" 31 checksum: [ 32 "sha256=8512fd4934e9ad4122b9305036a897556d66c9aade1f973c633c6e4d7ae06be6" 33 "md5=c883927ce8a9f3f7159ef7b20988f051" 34 ] 35}