this repo has no description
1opam-version: "2.0" 2maintainer: "Antonio Monteiro <anmonteiro@gmail.com>" 3authors: [ "Antonio Monteiro <anmonteiro@gmail.com>" ] 4license: "BSD-3-clause" 5homepage: "https://github.com/anmonteiro/ocaml-h2" 6bug-reports: "https://github.com/anmonteiro/ocaml-h2/issues" 7dev-repo: "git+https://github.com/anmonteiro/ocaml-h2.git" 8doc: "https://anmonteiro.github.io/ocaml-h2/" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.06" & < "5.0"} 14 "dune" {>= "1.7"} 15 "alcotest" {with-test} 16 "yojson" {with-test} 17 "hex" {with-test} 18 "base64" {>= "3.0.0"} 19 "bigstringaf" {>= "0.5.0"} 20 "angstrom" {>= "0.11.2" & < "0.14.0"} 21 "faraday" {>= "0.5.0"} 22 "psq" 23 "hpack" 24 "httpaf" 25] 26synopsis: 27 "A high-performance, memory-efficient, and scalable HTTP/2 library for for OCaml" 28description: """ 29h2 is an implementation of the HTTP/2 specification entirely in OCaml. It 30is based on the concepts in http/af, and therefore uses the Angstrom and 31Faraday libraries to implement the parsing and serialization layers of the 32HTTP/2 standard as a state machine that is agnostic to the underlying I/O 33specifics. It also preserves the same API as http/af wherever possible. 34""" 35url { 36 src: 37 "https://github.com/anmonteiro/ocaml-h2/releases/download/0.5.0/h2-0.5.0.tbz" 38 checksum: [ 39 "sha256=cc7517d73b0b24425afcedd258c09d7ebb6c2c20075137cb6f6eb7b63c8e7ad3" 40 "sha512=7c36532f127194e7bac8080ac667a0d01860071d3a5bd85ebc67ec91841d494a3a048dab424747c185e4fc6ea323548c7375af895bf70b5b720ee845df8944f0" 41 ] 42}