this repo has no description
1opam-version: "2.0"
2synopsis: "CoHTTP implementation for the Async concurrency library"
3description: """
4An implementation of an HTTP client and server using the Async
5concurrency library. See the `Cohttp_async` module for information
6on how to use this. The package also installs `cohttp-curl-async`
7and a `cohttp-server-async` binaries for quick uses of a HTTP(S)
8client and server respectively.
9"""
10maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
11authors: [
12 "Anil Madhavapeddy"
13 "Stefano Zacchiroli"
14 "David Sheets"
15 "Thomas Gazagnaire"
16 "David Scott"
17 "Rudi Grinberg"
18 "Andy Ray"
19 "Anurag Soni"
20]
21license: "ISC"
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 "dune" {>= "3.0"}
27 "ocaml" {>= "4.14"}
28 "http" {= version}
29 "cohttp" {= version}
30 "async_kernel" {>= "v0.16.0"}
31 "async_unix" {>= "v0.16.0"}
32 "async" {>= "v0.16.0"}
33 "base" {>= "v0.16.0"}
34 "core" {with-test}
35 "core_unix" {>= "v0.14.0"}
36 "conduit-async" {>= "1.2.0"}
37 "magic-mime"
38 "mirage-crypto" {with-test & < "1.0.0"}
39 "logs"
40 "fmt" {>= "0.8.2"}
41 "sexplib0"
42 "ppx_sexp_conv" {>= "v0.13.0"}
43 "ounit" {with-test}
44 "uri" {>= "2.0.0"}
45 "uri-sexp"
46 "ipaddr"
47 "odoc" {with-doc}
48]
49dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git"
50build: [
51 ["dune" "subst"] {dev}
52 [
53 "dune"
54 "build"
55 "-p"
56 name
57 "-j"
58 jobs
59 "@install"
60 "@cohttp-async/runtest" {with-test & os != "macos"}
61 "@doc" {with-doc}
62 ]
63]
64available: opam-version >= "2.1.0" & arch != "s390x"
65flags: [ avoid-version ]
66url {
67 src:
68 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha2/cohttp-6.0.0.alpha2.tbz"
69 checksum: [
70 "sha256=2f00d14832c1c13427c12007e5b45a8f121e06e46d556a76904359ab26c0cff6"
71 "sha512=342034580418d55e7b9657c09cf187c415e562fc041e8f5eaa489cfae08f60b98afcddbc77632b479755cdfb2d30b5653ed5250b5b7dbde01f0be93f4e828bcc"
72 ]
73}
74x-commit-hash: "bc9c78549a32d49be5fb51589331da51e86de269"