this repo has no description
1opam-version: "2.0" 2synopsis: "Lwt + UNIX support for h2" 3description: 4 "h2 is an implementation of the HTTP/2 specification entirely in OCaml. h2-lwt-unix provides an Lwt runtime implementation for h2 that targets UNIX binaries." 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-lwt" {= version} 14 "faraday-lwt-unix" 15 "gluten-lwt-unix" {>= "0.2.1"} 16 "odoc" {with-doc} 17] 18depopts: ["tls-lwt" "lwt_ssl"] 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.10.0/h2-0.10.0.tbz" 36 checksum: [ 37 "sha256=9fd6afa552fa1c3d8a04e3761699d47ae1f71ce503380dbd8929a375cc4c46f1" 38 "sha512=d0f4eab388df4f35eb2cfc93e7cd75e15c7ae5bbb382325e1219766558d52698f580e310cab3e4fa3eebe0fa2c2270af09d56537bd7191796bd0748d12633e35" 39 ] 40} 41x-commit-hash: "fff323e57f08cc1ca58cf9a6cd4996c3ac5d24de" 42conflicts: [ 43 "tls-lwt" {>= "1.0.0"} 44]