this repo has no description
1opam-version: "2.0" 2synopsis: "CoHTTP implementation using the Lwt concurrency library" 3description: """ 4This is a portable implementation of HTTP that uses the Lwt concurrency library 5to multiplex IO. It implements as much of the logic in an OS-independent way 6as possible, so that more specialised modules can be tailored for different 7targets. For example, you can install `cohttp-lwt-unix` or `cohttp-lwt-jsoo` 8for a Unix or JavaScript backend, or `cohttp-mirage` for the MirageOS unikernel 9version of the library. All of these implementations share the same IO logic 10from this module.""" 11maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 12authors: [ 13 "Anil Madhavapeddy" 14 "Stefano Zacchiroli" 15 "David Sheets" 16 "Thomas Gazagnaire" 17 "David Scott" 18 "Rudi Grinberg" 19 "Andy Ray" 20 "Anurag Soni" 21] 22license: "ISC" 23homepage: "https://github.com/mirage/ocaml-cohttp" 24doc: "https://mirage.github.io/ocaml-cohttp/" 25bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" 26depends: [ 27 "dune" {>= "3.8"} 28 "ocaml" {>= "4.08"} 29 "http" {= version} 30 "cohttp" {= version} 31 "lwt" {>= "5.7.0"} 32 "sexplib0" 33 "ppx_sexp_conv" {>= "v0.13.0"} 34 "logs" 35 "uri" {>= "2.0.0"} 36 "odoc" {with-doc} 37] 38dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" 39build: [ 40 ["dune" "subst"] {dev} 41 [ 42 "dune" 43 "build" 44 "-p" 45 name 46 "-j" 47 jobs 48 "@install" 49 "@cohttp-lwt/runtest" {with-test} 50 "@doc" {with-doc} 51 ] 52] 53url { 54 src: 55 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0/cohttp-6.0.0.tbz" 56 checksum: [ 57 "sha256=54cc34af128b342f4ae608a669650d66661ffdd503250e4de93a1a5ef1ef22a9" 58 "sha512=289381d3ff5377208f86d68148846e086f017d4c09f4070e4f66e2cb1ef2b0e0c19a6b764a64f251b6005a2a6f169dec0f0f704f3278af410392b52415b9bdae" 59 ] 60} 61x-commit-hash: "716d6e66be35ed11967f3984ace27c1fa327b8ed"