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.1.0/cohttp-6.1.0.tbz" 69 checksum: [ 70 "sha256=a81ac49699ec45f58b3d85cc4e2274120d28449d7c2075adb3234f0583d76c33" 71 "sha512=55b75c6afea58fa97a702712c5ecfb67bcfb8de32345ca0e40c16561aaf6f001daaf05781484a1df5caab85353f931b841169f3229563c655c463b7f7b44cd54" 72 ] 73} 74x-commit-hash: "de25ba68286866577bd8a81c002176cc22dd49e4"