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