this repo has no description
1opam-version: "2.0" 2synopsis: "Cohttp client using Curl & Lwt as the backend" 3description: """ 4An HTTP client that relies on Curl + Lwt for the backend. Does not require 5conduit for SSL.""" 6maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 7authors: [ 8 "Anil Madhavapeddy" 9 "Stefano Zacchiroli" 10 "David Sheets" 11 "Thomas Gazagnaire" 12 "David Scott" 13 "Rudi Grinberg" 14 "Andy Ray" 15 "Anurag Soni" 16] 17license: "ISC" 18homepage: "https://github.com/mirage/ocaml-cohttp" 19doc: "https://mirage.github.io/ocaml-cohttp/" 20bug-reports: "https://github.com/mirage/ocaml-cohttp/issues" 21depends: [ 22 "dune" {>= "2.9"} 23 "ocaml" {>= "4.08"} 24 "ocurl" 25 "http" {= version} 26 "cohttp-curl" {= version} 27 "stringext" 28 "lwt" {>= "5.3.0"} 29 "uri" {with-test & >= "4.2.0"} 30 "alcotest" {with-test} 31 "cohttp-lwt-unix" {with-test & =version} 32 "cohttp" {with-test & =version} 33 "cohttp-lwt" {with-test & =version} 34 "conduit-lwt" {with-test} 35 "ounit" {with-test} 36 "odoc" {with-doc} 37] 38dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" 39build: [ 40 ["dune" "subst"] {dev} 41 [ 42 "dune" 43 "build" 44 "-p" 45 name 46 "-j" 47 jobs 48 "--promote-install-files=false" 49 "@install" 50 "@cohttp-curl-lwt/runtest" {with-test & os != "macos"} 51 "@doc" {with-doc} 52 ] 53 ["dune" "install" "-p" name "--create-install-files" name] 54] 55available: opam-version >= "2.1.0" 56flags: [ avoid-version ] 57url { 58 src: 59 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha0/cohttp-eio-6.0.0.alpha0.tbz" 60 checksum: [ 61 "sha256=2ed4acd5ea309ca064731ec9f02a4b4afcec1ab000f471da68ae81355130b56e" 62 "sha512=e741293352d8376eaf7ccc7ba986dc8fd33cc560b8a786d4b4f8cffde5f1d78651dd5dbb944db00e57a48f25bffdde8d6d7b8c5828605ed02f295c297ef87fdd" 63 ] 64} 65x-commit-hash: "ba9ca0791c3fd6242e28026feaa41fe4ac453089"