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.0"} 27 "ocaml" {>= "4.08"} 28 "http" {= version} 29 "cohttp" {= version} 30 "async_kernel" {>= "v0.14.0" & < "v0.16.0"} 31 "async_unix" {>= "v0.14.0"} 32 "async" {>= "v0.14.0"} 33 "base" {>= "v0.11.0"} 34 "core" {with-test} 35 "core_unix" {>= "v0.14.0"} 36 "conduit-async" {>= "1.2.0"} 37 "magic-mime" 38 "mirage-crypto" {with-test & < "1.0.0"} 39 "logs" 40 "fmt" {>= "0.8.2"} 41 "sexplib0" 42 "ppx_sexp_conv" {>= "v0.13.0"} 43 "ounit" {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: opam-version >= "2.1.0" & arch != "s390x" 65flags: [ avoid-version ] 66url { 67 src: 68 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha1/cohttp-6.0.0.alpha1.tbz" 69 checksum: [ 70 "sha256=4e3ece8ade6493fe731c0842f519cc0f8f564753d71c985aa4ed6de3f0753646" 71 "sha512=5db6f1ffab6fc2ab30baffb1fc82b7f50b11ddb31ec19fc4415dac40f04766f29e816a4cf99ddb152b93c8acbefade7779ad3dc3d092e2f88fa1deea3fc2721a" 72 ] 73} 74x-commit-hash: "16e991ec1f7e5f0c99615cd1f58b99b02e3d0499"