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"} 15 "dream-pure" 16 "lwt_ppx" 17 "ocaml" 18 "dune" {>= "2.7"} 19 "mirage-crypto-rng" {>= "0.8.0" & < "0.11.0"} 20 "uri" 21 22 "bisect_ppx" {with-test & >= "2.5.0"} # --instrument-with. 23 "dream" {with-test} 24 "ppx_expect" {with-test} 25] 26 27build: [ 28 ["dune" "build" "-p" name "-j" jobs] 29] 30 31url { 32 src: 33 "https://github.com/aantron/hyper/archive/refs/tags/1.0.0-alpha1.tar.gz" 34 checksum: [ 35 "sha256=64ab9ae3bd985cb5df0c5413af12584b34d2902b7a436c26cbe0ea41d5d71192" 36 "md5=957ac234ff3d1b4d8a88216a8e97a104" 37 ] 38} 39authors: "Anton Bachin <antonbachin@yahoo.com>"