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] 50dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" 51build: [ 52 ["dune" "subst"] {dev} 53 [ 54 "dune" 55 "build" 56 "-p" 57 name 58 "-j" 59 jobs 60 "@install" 61 "@cohttp/runtest" {with-test} 62 "@doc" {with-doc} 63 ] 64] 65available: opam-version >= "2.1.0" 66flags: [ avoid-version ] 67url { 68 src: 69 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha2/cohttp-6.0.0.alpha2.tbz" 70 checksum: [ 71 "sha256=2f00d14832c1c13427c12007e5b45a8f121e06e46d556a76904359ab26c0cff6" 72 "sha512=342034580418d55e7b9657c09cf187c415e562fc041e8f5eaa489cfae08f60b98afcddbc77632b479755cdfb2d30b5653ed5250b5b7dbde01f0be93f4e828bcc" 73 ] 74} 75x-commit-hash: "bc9c78549a32d49be5fb51589331da51e86de269"