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.8"}
27 "ocaml" {>= "4.14"}
28 "http" {= version}
29 "cohttp" {= version}
30 "async_kernel" {>= "v0.17.0"}
31 "async_unix" {>= "v0.17.0"}
32 "async" {>= "v0.17.0"}
33 "base" {>= "v0.17.0"}
34 "core" {with-test}
35 "core_unix" {>= "v0.14.0"}
36 "conduit-async" {>= "1.2.0"}
37 "magic-mime"
38 "digestif" {with-test}
39 "logs"
40 "fmt" {>= "0.8.2"}
41 "sexplib0"
42 "ppx_sexp_conv" {>= "v0.13.0"}
43 "ounit2" {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}
61 "@doc" {with-doc}
62 ]
63]
64available: arch != "s390x"
65url {
66 src:
67 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0/cohttp-6.0.0.tbz"
68 checksum: [
69 "sha256=54cc34af128b342f4ae608a669650d66661ffdd503250e4de93a1a5ef1ef22a9"
70 "sha512=289381d3ff5377208f86d68148846e086f017d4c09f4070e4f66e2cb1ef2b0e0c19a6b764a64f251b6005a2a6f169dec0f0f704f3278af410392b52415b9bdae"
71 ]
72}
73x-commit-hash: "716d6e66be35ed11967f3984ace27c1fa327b8ed"