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 "ipaddr" {>= "5.6.0"} 34 "ppx_sexp_conv" {>= "v0.13.0"} 35 "logs" 36 "uri" {>= "2.0.0"} 37 "odoc" {with-doc} 38] 39dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" 40build: [ 41 ["dune" "subst"] {dev} 42 [ 43 "dune" 44 "build" 45 "-p" 46 name 47 "-j" 48 jobs 49 "@install" 50 "@cohttp-lwt/runtest" {with-test} 51 "@doc" {with-doc} 52 ] 53] 54url { 55 src: 56 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.1.0/cohttp-6.1.0.tbz" 57 checksum: [ 58 "sha256=a81ac49699ec45f58b3d85cc4e2274120d28449d7c2075adb3234f0583d76c33" 59 "sha512=55b75c6afea58fa97a702712c5ecfb67bcfb8de32345ca0e40c16561aaf6f001daaf05781484a1df5caab85353f931b841169f3229563c655c463b7f7b44cd54" 60 ] 61} 62x-commit-hash: "de25ba68286866577bd8a81c002176cc22dd49e4"