this repo has no description
1opam-version: "2.0" 2 3synopsis: "Web client with HTTP/1, HTTP/2, TLS, and WebSocket support" 4tags: ["http" "web" "client" "websocket" "http2" "tls" "dream"] 5 6license: "MIT" 7homepage: "https://github.com/aantron/hyper" 8doc: "https://aantron.github.io/hyper" 9bug-reports: "https://github.com/aantron/hyper/issues" 10dev-repo: "git+https://github.com/aantron/hyper.git" 11maintainer: "Anton Bachin <antonbachin@yahoo.com>" 12 13depends: [ 14 "dream-httpaf" {>= "1.0.0~alpha2" & < "1.0.0~alpha3"} 15 "dream-pure" {>= "1.0.0~alpha2"} 16 "dune" {>= "2.7.0"} 17 "lwt_ppx" 18 "mirage-crypto-rng" {< "1.0.0"} 19 "mirage-crypto-rng-lwt" {< "1.0.0"} 20 "ocaml" {>= "4.08.0"} 21 "uri" 22 23 "bisect_ppx" {with-test & >= "2.5.0"} # --instrument-with. 24 "dream" {with-test} 25 "ppx_expect" {with-test} 26] 27 28build: [ 29 ["dune" "build" "-p" name "-j" jobs] 30] 31 32url { 33 src: 34 "https://github.com/aantron/hyper/archive/refs/tags/1.0.0-alpha2.tar.gz" 35 checksum: [ 36 "sha256=887c4ea30dd09474f68f7e6a1232ad9244f4826943158c8e0a9322cbf47c83a1" 37 "md5=214f88044d1589314ba4d2bb248a9633" 38 ] 39} 40authors: "Anton Bachin <antonbachin@yahoo.com>"