this repo has no description
1opam-version: "2.0"
2synopsis: "Async support for h2"
3description:
4 "h2 is an implementation of the HTTP/2 specification entirely in OCaml. h2-async provides an Async runtime implementation for h2."
5maintainer: ["Antonio Nuno Monteiro <anmonteiro@gmail.com>"]
6authors: ["Antonio Nuno Monteiro <anmonteiro@gmail.com>"]
7license: "BSD-3-clause"
8homepage: "https://github.com/anmonteiro/ocaml-h2"
9bug-reports: "https://github.com/anmonteiro/ocaml-h2/issues"
10depends: [
11 "dune" {>= "2.7"}
12 "ocaml" {>= "4.08.0"}
13 "h2" {= version}
14 "faraday-async"
15 "gluten-async" {>= "0.4.0"}
16 "odoc" {with-doc}
17]
18depopts: ["async_ssl" "tls-async"]
19build: [
20 ["dune" "subst"] {dev}
21 [
22 "dune"
23 "build"
24 "-p"
25 name
26 "-j"
27 jobs
28 "@install"
29 "@doc" {with-doc}
30 ]
31]
32dev-repo: "git+https://github.com/anmonteiro/ocaml-h2.git"
33url {
34 src:
35 "https://github.com/anmonteiro/ocaml-h2/releases/download/0.12.0/h2-0.12.0.tbz"
36 checksum: [
37 "sha256=36e40b113d90ea383619a8c7bd993f866131c3c5d957619b6849eb32af8c53c6"
38 "sha512=a71670c0db439e26c65b7565c1e55f7714b4ebdacac47ba1cfc66a6eddccc4ddef583ee353b19d83a662d95d7878db5e93c75b8a38745a92860655ba0a2c1840"
39 ]
40}
41x-commit-hash: "471c7ae2e56d6c00123d60eec9d7ed68dae4d019"
42conflicts: [
43 "tls-async" {>= "1.0.0"}
44]