this repo has no description
1opam-version: "2.0"
2maintainer: "anil@recoil.org"
3authors: [
4 "Anil Madhavapeddy"
5 "Stefano Zacchiroli"
6 "David Sheets"
7 "Thomas Gazagnaire"
8 "David Scott"
9 "Rudi Grinberg"
10 "Andy Ray"
11]
12synopsis: "CoHTTP implementation for the Async concurrency library"
13description: """
14An implementation of an HTTP client and server using the Async
15concurrency library. See the `Cohttp_async` module for information
16on how to use this. The package also installs `cohttp-curl-async`
17and a `cohttp-server-async` binaries for quick uses of a HTTP(S)
18client and server respectively.
19"""
20license: "ISC"
21tags: ["org:mirage" "org:xapi-project"]
22homepage: "https://github.com/mirage/ocaml-cohttp"
23doc: "https://mirage.github.io/ocaml-cohttp/"
24bug-reports: "https://github.com/mirage/ocaml-cohttp/issues"
25depends: [
26 "ocaml" {>= "4.04.1"}
27 "dune" {>= "1.1.0"}
28 "async_kernel" {>= "v0.14.0"}
29 "async_unix" {>= "v0.14.0"}
30 "async" {>= "v0.14.0"}
31 "async" {< "v0.15.0" & with-test}
32 "base" {>= "v0.11.0"}
33 "core" {with-test}
34 "cohttp" {=version}
35 "conduit-async" {>="1.2.0" & < "3.0.0"}
36 "core_unix" {>= "v0.14.0"}
37 "magic-mime"
38 "logs"
39 "fmt" {>= "0.8.2"}
40 "sexplib0"
41 "stdlib-shims"
42 "ppx_sexp_conv" {>= "v0.13.0"}
43 "ounit" {with-test}
44 "uri" {>= "2.0.0"}
45 "uri-sexp"
46]
47build: [
48 ["dune" "subst"] {dev}
49 ["dune" "build" "-p" name "-j" jobs]
50 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
51]
52dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git"
53url {
54 src:
55 "https://github.com/mirage/ocaml-cohttp/releases/download/v2.5.8/cohttp-2.5.8.tbz"
56 checksum: [
57 "sha256=2722477d1f5bb09e841debc125c30ff44f1b20cf8894b68cb48f2b6de092d25a"
58 "sha512=ce934a24c0e1eaf5dc674927b45277d461a13757d4c165a4a11811f9eb7b11b78b4560792ca430734d4e3a5b8791eee887d4eab2a0e9e30aa4a5864e833dd768"
59 ]
60}
61x-commit-hash: "078cb99b47f3665bd298161fe1c4bc50440a129f"