2022-10-05 11:58:07 +00:00
|
|
|
opam-version: "2.0"
|
|
|
|
synopsis: "HTTP client for MirageOS"
|
|
|
|
maintainer: ["team@robur.coop"]
|
|
|
|
authors: [
|
|
|
|
"Robur Team <team@robur.coop>"
|
|
|
|
]
|
|
|
|
license: "MIT"
|
|
|
|
homepage: "https://github.com/roburio/http-mirage-client"
|
|
|
|
bug-reports: "https://github.com/roburio/http-mirage-client/issues"
|
|
|
|
depends: [
|
|
|
|
"dune" {>= "2.3"}
|
|
|
|
"ocaml" {>= "4.11.0"}
|
|
|
|
"paf" {>= "0.2.0"}
|
|
|
|
"mirage-clock" {>= "4.0.0"}
|
|
|
|
"mirage-time" {>= "3.0.0"}
|
|
|
|
"tcpip" {>= "7.0.0"}
|
|
|
|
"lwt" {>= "5.5.0"}
|
|
|
|
"mimic-happy-eyeballs"
|
|
|
|
"httpaf"
|
2022-11-01 13:29:12 +00:00
|
|
|
"alcotest-lwt" {with-test}
|
2023-03-22 09:46:02 +00:00
|
|
|
"mirage-clock-unix" {with-test & >= "4.0.0"}
|
2023-02-02 13:33:39 +00:00
|
|
|
"mirage-crypto-rng" {with-test}
|
2023-03-22 09:46:02 +00:00
|
|
|
"mirage-time-unix" {with-test & >= "3.0.0"}
|
2023-03-21 19:33:54 +00:00
|
|
|
"h2" {>= "0.10.0"}
|
2022-10-05 11:58:07 +00:00
|
|
|
]
|
|
|
|
build: [
|
|
|
|
["dune" "subst"] {dev}
|
|
|
|
[
|
|
|
|
"dune"
|
|
|
|
"build"
|
|
|
|
"-p"
|
|
|
|
name
|
|
|
|
"-j"
|
|
|
|
jobs
|
|
|
|
"@install"
|
2022-11-03 11:40:47 +00:00
|
|
|
"@runtest" {with-test & os != "macos"} # macOS is disabled due to restrictions in sandbox-exec
|
2022-10-05 11:58:07 +00:00
|
|
|
"@doc" {with-doc}
|
|
|
|
]
|
|
|
|
]
|
2022-10-05 12:41:49 +00:00
|
|
|
dev-repo: "git+https://github.com/roburio/http-mirage-client.git"
|