http-mirage-client/http-mirage-client.opam

41 lines
997 B
Text
Raw Normal View History

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"
2023-09-09 09:51:47 +00:00
homepage: "https://github.com/robur-coop/http-mirage-client"
bug-reports: "https://github.com/robur-coop/http-mirage-client/issues"
2022-10-05 11:58:07 +00:00
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" {>= "0.0.9"}
2022-10-05 11:58:07 +00:00
"httpaf"
"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}
]
]
2023-09-09 09:51:47 +00:00
dev-repo: "git+https://github.com/robur-coop/http-mirage-client.git"