this repo has no description
1opam-version: "2.0" 2synopsis: "CoHTTP implementation with eio backend" 3description: 4 "A CoHTTP server and client implementation based on `eio` library. `cohttp-eio`features a multicore capable HTTP 1.1 server. The library promotes and is built with direct style of coding as opposed to a monadic." 5maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6authors: [ 7 "Anil Madhavapeddy" 8 "Stefano Zacchiroli" 9 "David Sheets" 10 "Thomas Gazagnaire" 11 "David Scott" 12 "Rudi Grinberg" 13 "Andy Ray" 14 "Anurag Soni" 15] 16license: "ISC" 17homepage: "https://github.com/mirage/ocaml-cohttp" 18doc: "https://mirage.github.io/ocaml-cohttp/" 19bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" 20depends: [ 21 "dune" {>= "3.0"} 22 "base-domains" 23 "eio" {>= "0.7" & < "0.12"} 24 "eio_main" {with-test} 25 "mdx" {with-test} 26 "uri" {with-test} 27 "fmt" 28 "ptime" 29 "http" {= version} 30 "odoc" {with-doc} 31] 32available: opam-version >= "2.1.0" 33flags: [ avoid-version ] 34dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" 35build: [ 36 ["dune" "subst"] {dev} 37 [ 38 "dune" 39 "build" 40 "-p" 41 name 42 "-j" 43 jobs 44 "@install" 45 "@cohttp-eio/runtest" {with-test} 46 "@doc" {with-doc} 47 ] 48] 49url { 50 src: 51 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha1/cohttp-6.0.0.alpha1.tbz" 52 checksum: [ 53 "sha256=4e3ece8ade6493fe731c0842f519cc0f8f564753d71c985aa4ed6de3f0753646" 54 "sha512=5db6f1ffab6fc2ab30baffb1fc82b7f50b11ddb31ec19fc4415dac40f04766f29e816a4cf99ddb152b93c8acbefade7779ad3dc3d092e2f88fa1deea3fc2721a" 55 ] 56} 57x-commit-hash: "16e991ec1f7e5f0c99615cd1f58b99b02e3d0499"