this repo has no description
1opam-version: "2.0" 2synopsis: "CoHTTP implementation for the Async concurrency library" 3description: """ 4An implementation of an HTTP client and server using the Async 5concurrency library. See the `Cohttp_async` module for information 6on how to use this. The package also installs `cohttp-curl-async` 7and a `cohttp-server-async` binaries for quick uses of a HTTP(S) 8client and server respectively. 9""" 10maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 11authors: [ 12 "Anil Madhavapeddy" 13 "Stefano Zacchiroli" 14 "David Sheets" 15 "Thomas Gazagnaire" 16 "David Scott" 17 "Rudi Grinberg" 18 "Andy Ray" 19 "Anurag Soni" 20] 21license: "ISC" 22homepage: "https://github.com/mirage/ocaml-cohttp" 23doc: "https://mirage.github.io/ocaml-cohttp/" 24bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" 25depends: [ 26 "dune" {>= "3.8"} 27 "ocaml" {>= "4.14" & < "5.3.0"} 28 "http" {= version} 29 "cohttp" {= version} 30 "async_kernel" {>= "v0.16.0"} 31 "async_unix" {>= "v0.16.0"} 32 "async" {>= "v0.17.0"} 33 "base" {>= "v0.16.0"} 34 "core" {with-test} 35 "core_unix" {>= "v0.14.0"} 36 "conduit-async" {>= "1.2.0"} 37 "magic-mime" 38 "digestif" {with-test} 39 "logs" 40 "fmt" {>= "0.8.2"} 41 "sexplib0" 42 "ppx_sexp_conv" {>= "v0.13.0"} 43 "ounit2" {with-test} 44 "uri" {>= "2.0.0"} 45 "uri-sexp" 46 "ipaddr" 47 "odoc" {with-doc} 48] 49dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" 50build: [ 51 ["dune" "subst"] {dev} 52 [ 53 "dune" 54 "build" 55 "-p" 56 name 57 "-j" 58 jobs 59 "@install" 60 "@cohttp-async/runtest" {with-test} 61 "@doc" {with-doc} 62 ] 63] 64available: arch != "s390x" 65url { 66 src: 67 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.1.0/cohttp-6.1.0.tbz" 68 checksum: [ 69 "sha256=a81ac49699ec45f58b3d85cc4e2274120d28449d7c2075adb3234f0583d76c33" 70 "sha512=55b75c6afea58fa97a702712c5ecfb67bcfb8de32345ca0e40c16561aaf6f001daaf05781484a1df5caab85353f931b841169f3229563c655c463b7f7b44cd54" 71 ] 72} 73x-commit-hash: "de25ba68286866577bd8a81c002176cc22dd49e4"