this repo has no description
1opam-version: "2.0"
2synopsis: "An OCaml library for HTTP clients and servers"
3description: """
4Cohttp is an OCaml library for creating HTTP daemons. It has a portable
5HTTP parser, and implementations using various asynchronous programming
6libraries.
7
8See the cohttp-async, cohttp-lwt, cohttp-lwt-unix, cohttp-lwt-jsoo and
9cohttp-mirage libraries for concrete implementations for particular
10targets.
11
12You can implement other targets using the parser very easily. Look at the `IO`
13signature in `lib/s.mli` and implement that in the desired backend.
14
15You can activate some runtime debugging by setting `COHTTP_DEBUG` to any
16value, and all requests and responses will be written to stderr. Further
17debugging of the connection layer can be obtained by setting `CONDUIT_DEBUG`
18to any value.
19"""
20maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
21authors: [
22 "Anil Madhavapeddy"
23 "Stefano Zacchiroli"
24 "David Sheets"
25 "Thomas Gazagnaire"
26 "David Scott"
27 "Rudi Grinberg"
28 "Andy Ray"
29 "Anurag Soni"
30]
31license: "ISC"
32homepage: "https://github.com/mirage/ocaml-cohttp"
33doc: "https://mirage.github.io/ocaml-cohttp/"
34bug-reports: "https://github.com/mirage/ocaml-cohttp/issues"
35depends: [
36 "dune" {>= "3.8"}
37 "http" {= version}
38 "ocaml" {>= "4.08"}
39 "re" {>= "1.9.0"}
40 "uri" {>= "2.0.0"}
41 "uri-sexp"
42 "logs"
43 "sexplib0"
44 "ppx_sexp_conv" {>= "v0.13.0"}
45 "stringext"
46 "base64" {>= "3.1.0"}
47 "fmt" {with-test}
48 "alcotest" {with-test & >= "1.7.0"}
49 "odoc" {with-doc}
50]
51dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git"
52build: [
53 ["dune" "subst"] {dev}
54 [
55 "dune"
56 "build"
57 "-p"
58 name
59 "-j"
60 jobs
61 "@install"
62 "@cohttp/runtest" {with-test}
63 "@doc" {with-doc}
64 ]
65]
66url {
67 src:
68 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0/cohttp-6.0.0.tbz"
69 checksum: [
70 "sha256=54cc34af128b342f4ae608a669650d66661ffdd503250e4de93a1a5ef1ef22a9"
71 "sha512=289381d3ff5377208f86d68148846e086f017d4c09f4070e4f66e2cb1ef2b0e0c19a6b764a64f251b6005a2a6f169dec0f0f704f3278af410392b52415b9bdae"
72 ]
73}
74x-commit-hash: "716d6e66be35ed11967f3984ace27c1fa327b8ed"