···11+opam-version: "2.0"
22+maintainer: "anil@recoil.org"
33+authors: [
44+ "Anil Madhavapeddy"
55+ "Stefano Zacchiroli"
66+ "David Sheets"
77+ "Thomas Gazagnaire"
88+ "David Scott"
99+ "Rudi Grinberg"
1010+ "Andy Ray"
1111+]
1212+synopsis: "An OCaml library for HTTP clients and servers"
1313+description: """
1414+Cohttp is an OCaml library for creating HTTP daemons. It has a portable
1515+HTTP parser, and implementations using various asynchronous programming
1616+libraries.
1717+1818+See the cohttp-async, cohttp-lwt, cohttp-lwt-unix, cohttp-lwt-jsoo and
1919+cohttp-mirage libraries for concrete implementations for particular
2020+targets.
2121+2222+You can implement other targets using the parser very easily. Look at the `IO`
2323+signature in `lib/s.mli` and implement that in the desired backend.
2424+2525+You can activate some runtime debugging by setting `COHTTP_DEBUG` to any
2626+value, and all requests and responses will be written to stderr. Further
2727+debugging of the connection layer can be obtained by setting `CONDUIT_DEBUG`
2828+to any value."""
2929+license: "ISC"
3030+tags: ["org:mirage" "org:xapi-project"]
3131+homepage: "https://github.com/mirage/ocaml-cohttp"
3232+doc: "https://mirage.github.io/ocaml-cohttp/"
3333+bug-reports: "https://github.com/mirage/ocaml-cohttp/issues"
3434+depends: [
3535+ "ocaml" {>= "4.08"}
3636+ "dune" {>= "2.0"}
3737+ "re" {>= "1.9.0"}
3838+ "uri" {>= "2.0.0"}
3939+ "uri-sexp"
4040+ "sexplib0"
4141+ "ppx_sexp_conv" {>= "v0.13.0"}
4242+ "stringext"
4343+ "base64" {>= "3.1.0"}
4444+ "fmt" {with-test}
4545+ "jsonm" {build}
4646+ "alcotest" {with-test}
4747+ "crowbar" {with-test & >= "0.2"}
4848+]
4949+build: [
5050+ ["dune" "subst"] {dev}
5151+ ["dune" "build" "-p" name "-j" jobs]
5252+ ["dune" "runtest" "-p" name "-j" jobs] {with-test}
5353+]
5454+dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git"
5555+url {
5656+ src:
5757+ "https://github.com/mirage/ocaml-cohttp/releases/download/v5.3.1/cohttp-5.3.1.tbz"
5858+ checksum: [
5959+ "sha256=f5e273d3c2f29ff47bd7e16db23e1f3d6cd01a40be00208985bc434c88d4576b"
6060+ "sha512=26580405fc33cd7e05b2c91732df97da9ba609d7392e5779be601aa65e34f1991d2b0ae2870ac29e57567f583dc0e13e61d3c4a74c7ac21012453acb33a37ae3"
6161+ ]
6262+}
6363+x-commit-hash: "0bb4e195b7ffbe2e70f5d9cd3a61973ad9593740"