this repo has no description
1opam-version: "2.0" 2synopsis: "Cohttp client using Curl & Async as the backend" 3description: """ 4An HTTP client that relies on Curl + Async 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" {>= "3.0"} 23 "ocurl" 24 "http" {= version} 25 "stringext" 26 "cohttp-curl" {= version} 27 "core" {>= "v0.16.0"} 28 "core_unix" {>= "v0.14.0"} 29 "async_kernel" 30 "async_unix" 31 "cohttp-async" {with-test & = version} 32 "uri" {with-test & >= "4.2.0"} 33 "fmt" {with-test} 34 "ounit" {with-test} 35 "alcotest" {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 "@install" 49 "@cohttp-curl-async/runtest" {with-test} 50 "@doc" {with-doc} 51 ] 52] 53available: opam-version >= "2.1.0" 54flags: [ avoid-version ] 55url { 56 src: 57 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_beta2/cohttp-v6.0.0_beta2.tbz" 58 checksum: [ 59 "sha256=90ecec8bd580411b4272c031b2f6b9c0a50485d20683c6a9c615242f3724b017" 60 "sha512=83ef539469d982862174a929e9baeb5b2a34e9323ee577d8be7148ebed9e785d835d59cc22982bc083bb872e4544616e2bf531ed7edf96bc397151c28bf618d6" 61 ] 62} 63x-commit-hash: "5da40ec181f8afb2ba6788d20c4d35bc8736c649"