this repo has no description
at main 1.6 kB view raw
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.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 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""" 35x-commit-hash: "72c4a317f43269d8196ba4cabc070203b561ad38" 36url { 37 src: 38 "https://github.com/anmonteiro/ocaml-h2/releases/download/0.7.0/h2-0.7.0.tbz" 39 checksum: [ 40 "sha256=63a233a075247d23dfc45adf8435621480d41ef2a597cf807f072bb786405ebc" 41 "sha512=0e0aef2ab42c660f0f50391d9555ac21010481d3b496ebaa0d9b5eb7a5e94c148e8212ecb6e64abd15b865d5f0db2f9a1bd314263079d033a62075212435b72c" 42 ] 43}