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