this repo has no description
1opam-version: "2.0" 2synopsis: "An OCaml library for HTTP clients and servers" 3description: """ 4[![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) 5 6Cohttp is an OCaml library for creating HTTP daemons. It has a portable 7HTTP parser, and implementations using various asynchronous programming 8libraries: 9 10* `Cohttp_lwt_unix` uses the [Lwt](https://ocsigen.org/lwt/) library, and 11 specifically the UNIX bindings. 12* `Cohttp_async` uses the [Async](https://realworldocaml.org/v1/en/html/concurrent-programming-with-async.html) 13 library. 14* `Cohttp_lwt` exposes an OS-independent Lwt interface, which is used 15 by the [Mirage](https://mirage.io/) interface to generate standalone 16 microkernels (use the cohttp-mirage subpackage). 17* `Cohttp_lwt_xhr` compiles to a JavaScript module that maps the Cohttp 18 calls to XMLHTTPRequests. This is used to compile OCaml libraries like 19 the GitHub bindings to JavaScript and still run efficiently. 20 21You can implement other targets using the parser very easily. Look at the `IO` 22signature in `lib/s.mli` and implement that in the desired backend. 23 24You can activate some runtime debugging by setting `COHTTP_DEBUG` to any 25value, and all requests and responses will be written to stderr. Further 26debugging of the connection layer can be obtained by setting `CONDUIT_DEBUG` 27to any value.""" 28maintainer: "anil@recoil.org" 29authors: [ 30 "Anil Madhavapeddy" 31 "Stefano Zacchiroli" 32 "David Sheets" 33 "Thomas Gazagnaire" 34 "David Scott" 35 "Rudi Grinberg" 36 "Andy Ray" 37] 38license: "ISC" 39tags: ["org:mirage" "org:xapi-project"] 40homepage: "https://github.com/mirage/ocaml-cohttp" 41doc: "https://mirage.github.io/ocaml-cohttp/" 42bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" 43depends: [ 44 "ocaml" {>= "4.04.1"} 45 "dune" {>= "1.1.0"} 46 "conduit-lwt-unix" {>= "1.0.3" & < "2.0.0"} 47 "cmdliner" 48 "magic-mime" 49 "logs" 50 "fmt" {>= "0.8.2"} 51 "cohttp-lwt" {= "1.2.0"} 52 "lwt" {>= "3.0.0"} 53 "base-unix" 54 "ounit" {with-test} 55] 56conflicts: [ 57 "lwt" {< "2.5.0"} 58] 59build: [ 60 ["dune" "subst"] {dev} 61 ["dune" "build" "-p" name "-j" jobs] 62 ["dune" "runtest" "-p" name "-j" jobs] {with-test & os != "macos"} 63] 64dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" 65url { 66 src: 67 "https://github.com/mirage/ocaml-cohttp/releases/download/v1.2.0/cohttp-v1.2.0.tbz" 68 checksum: [ 69 "sha256=3f71a5652aeb65c5ca54881ba6fa862a0acfad23f7516e762f6292d444daa942" 70 "md5=7aa3d4582848afff9a62f866b23173e1" 71 ] 72}