opam-version: "2.0" synopsis: "An OCaml library for HTTP clients and servers" description: """ [![Join the chat at https://gitter.im/mirage/ocaml-cohttp](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/mirage/ocaml-cohttp?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) Cohttp is an OCaml library for creating HTTP daemons. It has a portable HTTP parser, and implementations using various asynchronous programming libraries: * `Cohttp_lwt_unix` uses the [Lwt](https://ocsigen.org/lwt/) library, and specifically the UNIX bindings. * `Cohttp_async` uses the [Async](https://realworldocaml.org/v1/en/html/concurrent-programming-with-async.html) library. * `Cohttp_lwt` exposes an OS-independent Lwt interface, which is used by the [Mirage](https://mirage.io/) interface to generate standalone microkernels (use the cohttp-mirage subpackage). * `Cohttp_lwt_xhr` compiles to a JavaScript module that maps the Cohttp calls to XMLHTTPRequests. This is used to compile OCaml libraries like the GitHub bindings to JavaScript and still run efficiently. You can implement other targets using the parser very easily. Look at the `IO` signature in `lib/s.mli` and implement that in the desired backend. You can activate some runtime debugging by setting `COHTTP_DEBUG` to any value, and all requests and responses will be written to stderr. Further debugging of the connection layer can be obtained by setting `CONDUIT_DEBUG` to any value.""" maintainer: "anil@recoil.org" authors: [ "Anil Madhavapeddy" "Stefano Zacchiroli" "David Sheets" "Thomas Gazagnaire" "David Scott" "Rudi Grinberg" "Andy Ray" ] license: "ISC" tags: ["org:mirage" "org:xapi-project"] homepage: "https://github.com/mirage/ocaml-cohttp" doc: "https://mirage.github.io/ocaml-cohttp/" bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" depends: [ "ocaml" {>= "4.04.1"} "dune" {>= "1.1.0"} "conduit-lwt-unix" {>= "1.0.3" & < "2.0.0"} "cmdliner" "magic-mime" "logs" "fmt" {>= "0.8.2"} "cohttp-lwt" {= "1.2.0"} "lwt" {>= "3.0.0"} "base-unix" "ounit" {with-test} ] conflicts: [ "lwt" {< "2.5.0"} ] build: [ ["dune" "subst"] {dev} ["dune" "build" "-p" name "-j" jobs] ["dune" "runtest" "-p" name "-j" jobs] {with-test & os != "macos"} ] dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" url { src: "https://github.com/mirage/ocaml-cohttp/releases/download/v1.2.0/cohttp-v1.2.0.tbz" checksum: [ "sha256=3f71a5652aeb65c5ca54881ba6fa862a0acfad23f7516e762f6292d444daa942" "md5=7aa3d4582848afff9a62f866b23173e1" ] }