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.0"}
37 "http" {= version}
38 "ocaml" {>= "4.08"}
39 "re" {>= "1.9.0"}
40 "uri" {>= "2.0.0"}
41 "uri-sexp"
42 "sexplib0"
43 "ppx_sexp_conv" {>= "v0.13.0"}
44 "stringext"
45 "base64" {>= "3.1.0"}
46 "fmt" {with-test}
47 "alcotest" {with-test}
48 "odoc" {with-doc}
49]
50available: opam-version >= "2.1.0"
51flags: [ avoid-version ]
52dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git"
53build: [
54 ["dune" "subst"] {dev}
55 [
56 "dune"
57 "build"
58 "-p"
59 name
60 "-j"
61 jobs
62 "@install"
63 "@cohttp/runtest" {with-test}
64 "@doc" {with-doc}
65 ]
66]
67url {
68 src:
69 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha1/cohttp-6.0.0.alpha1.tbz"
70 checksum: [
71 "sha256=4e3ece8ade6493fe731c0842f519cc0f8f564753d71c985aa4ed6de3f0753646"
72 "sha512=5db6f1ffab6fc2ab30baffb1fc82b7f50b11ddb31ec19fc4415dac40f04766f29e816a4cf99ddb152b93c8acbefade7779ad3dc3d092e2f88fa1deea3fc2721a"
73 ]
74}
75x-commit-hash: "16e991ec1f7e5f0c99615cd1f58b99b02e3d0499"