Reynir Björnsson
c6cd38db9c
mirage-random-stdlib requires mirage-entropy, and the opam solver may choose mirage-entropy.0.4.1 which requires we provide `Mirage_os` somehow.
41 lines
1 KiB
Text
41 lines
1 KiB
Text
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"
|
|
"alcotest-lwt" {with-test}
|
|
"mirage-clock-unix" {with-test}
|
|
"mirage-random-stdlib" {with-test}
|
|
"mirage-time-unix" {with-test}
|
|
"mirage-entropy" {with-test & >= "0.5.0"} # dependency issue with mirage-random-stdlib
|
|
"h2"
|
|
]
|
|
build: [
|
|
["dune" "subst"] {dev}
|
|
[
|
|
"dune"
|
|
"build"
|
|
"-p"
|
|
name
|
|
"-j"
|
|
jobs
|
|
"@install"
|
|
"@runtest" {with-test & os != "macos"} # macOS is disabled due to restrictions in sandbox-exec
|
|
"@doc" {with-doc}
|
|
]
|
|
]
|
|
dev-repo: "git+https://github.com/roburio/http-mirage-client.git"
|