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" {>= "3.0"} 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] 38available: opam-version >= "2.1.0" 39flags: avoid-version 40dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git" 41build: [ 42 ["dune" "subst"] {dev} 43 [ 44 "dune" 45 "build" 46 "-p" 47 name 48 "-j" 49 jobs 50 "@install" 51 "@cohttp-curl-lwt/runtest" {with-test & os != "macos"} 52 "@doc" {with-doc} 53 ] 54] 55url { 56 src: 57 "https://github.com/mirage/ocaml-cohttp/releases/download/v6.0.0_alpha2/cohttp-6.0.0.alpha2.tbz" 58 checksum: [ 59 "sha256=2f00d14832c1c13427c12007e5b45a8f121e06e46d556a76904359ab26c0cff6" 60 "sha512=342034580418d55e7b9657c09cf187c415e562fc041e8f5eaa489cfae08f60b98afcddbc77632b479755cdfb2d30b5653ed5250b5b7dbde01f0be93f4e828bcc" 61 ] 62} 63x-commit-hash: "bc9c78549a32d49be5fb51589331da51e86de269"