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: "MIT" 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.1.0/h2-0.1.0.tbz" 31 checksum: [ 32 "sha256=dc64fc80a168c8c602e4d251d7d8663deb862a7bc96bff1af58923d120f2df8b" 33 "md5=dc12db1ec40d820c4fdab029e77567d1" 34 ] 35}