this repo has no description
1opam-version: "2.0" 2synopsis: "HTTP client for MirageOS" 3maintainer: ["team@robur.coop"] 4authors: [ 5 "Robur Team <team@robur.coop>" 6] 7license: "MIT" 8homepage: "https://github.com/robur-coop/http-mirage-client" 9bug-reports: "https://github.com/robur-coop/http-mirage-client/issues" 10depends: [ 11 "dune" {>= "2.3"} 12 "ocaml" {>= "4.11.0"} 13 "paf" {>= "0.2.0" & < "0.8.0"} 14 "mirage-clock" {>= "4.0.0"} 15 "mirage-time" {>= "3.0.0"} 16 "tcpip" {>= "7.0.0"} 17 "lwt" {>= "5.5.0"} 18 "mimic-happy-eyeballs" {>= "0.0.9"} 19 "httpaf" 20 "alcotest-lwt" {with-test & >= "1.0.0"} 21 "mirage-clock-unix" {with-test & >= "4.0.0"} 22 "mirage-crypto-rng" {with-test} 23 "mirage-time-unix" {with-test & >= "3.0.0"} 24 "h2" {>= "0.10.0"} 25 "tls" {>= "1.0.0"} 26 "x509" {>= "1.0.0"} 27 "happy-eyeballs-mirage" {< "2.0.0"} 28] 29build: [ 30 ["dune" "subst"] {dev} 31 [ 32 "dune" 33 "build" 34 "-p" 35 name 36 "-j" 37 jobs 38 "@install" 39 "@runtest" {with-test & os != "macos"} # macOS is disabled due to restrictions in sandbox-exec 40 "@doc" {with-doc} 41 ] 42] 43dev-repo: "git+https://github.com/robur-coop/http-mirage-client.git" 44url { 45 src: 46 "https://github.com/robur-coop/http-mirage-client/releases/download/v0.0.8/http-mirage-client-0.0.8.tbz" 47 checksum: [ 48 "sha256=ff57a0ba1d9d60b0d5356f9758d29cc26e4881059f10552e411612db4e4ec7e7" 49 "sha512=ac5da3bb3ab92928c63cb0608b9cc997fef5246397fa9d2a79a535194be892fcfe3418d2655160f28c975ef748f4b22c78e9c2ea9b61669dac71a67b131d2cc3" 50 ] 51} 52x-commit-hash: "9bd428af4050f1097859c9e4192e6af8c36044b7" 53x-maintenance-intent: [ "(latest)" ]