this repo has no description
1opam-version: "2.0" 2synopsis: "CoHTTP implementation for Unix and Windows using Lwt" 3description: """ 4An implementation of an HTTP client and server using the Lwt 5concurrency library. See the `Cohttp_lwt_unix` module for information 6on how to use this. The package also installs `cohttp-curl-lwt` 7and a `cohttp-server-lwt` binaries for quick uses of a HTTP(S) 8client and server respectively. 9 10Although the name implies that this only works under Unix, it 11should also be fine under Windows too. 12""" 13maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 14authors: [ 15 "Anil Madhavapeddy" 16 "Stefano Zacchiroli" 17 "David Sheets" 18 "Thomas Gazagnaire" 19 "David Scott" 20 "Rudi Grinberg" 21 "Andy Ray" 22 "Anurag Soni" 23] 24license: "ISC" 25homepage: "https://github.com/mirage/ocaml-cohttp" 26doc: "https://mirage.github.io/ocaml-cohttp/" 27bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" 28depends: [ 29 "dune" {>= "3.0"} 30 "ocaml" {>= "4.08"} 31 "http" {= version} 32 "cohttp" {= version} 33 "cohttp-lwt" {= version} 34 "cmdliner" {>= "1.1.0"} 35 "lwt" {>= "3.0.0"} 36 "conduit-lwt" {>= "5.0.0" & < "7.0.0"} 37 "conduit-lwt-unix" {>= "5.0.0" & < "7.0.0"} 38 "fmt" {>= "0.8.2"} 39 "base-unix" 40 "ppx_sexp_conv" {>= "v0.13.0"} 41 "magic-mime" 42 "logs" 43 "ounit" {with-test} 44 "odoc" {with-doc} 45] 46available: opam-version >= "2.1.0" 47flags: avoid-version 48dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" 49build: [ 50 ["dune" "subst"] {dev} 51 [ 52 "dune" 53 "build" 54 "-p" 55 name 56 "-j" 57 jobs 58 "@install" 59 "@cohttp-lwt-unix/runtest" {with-test & os != "macos"} 60 "@doc" {with-doc} 61 ] 62] 63url { 64 src: 65 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha2/cohttp-6.0.0.alpha2.tbz" 66 checksum: [ 67 "sha256=2f00d14832c1c13427c12007e5b45a8f121e06e46d556a76904359ab26c0cff6" 68 "sha512=342034580418d55e7b9657c09cf187c415e562fc041e8f5eaa489cfae08f60b98afcddbc77632b479755cdfb2d30b5653ed5250b5b7dbde01f0be93f4e828bcc" 69 ] 70} 71x-commit-hash: "bc9c78549a32d49be5fb51589331da51e86de269"