this repo has no description
1opam-version: "2.0" 2synopsis: "HTTP/1.1 client library like Python requests" 3maintainer: ["Roddy MacSween <github@roddymacsween.co.uk>"] 4authors: ["Roddy MacSween <github@roddymacsween.co.uk>"] 5license: "MIT" 6homepage: "https://github.com/roddyyaga/quests" 7doc: "https://roddyyaga.github.io/quests/quests/index.html" 8bug-reports: "https://github.com/roddyyaga/quests/issues" 9depends: [ 10 "ocaml" {>= "4.06"} 11 "dune" {>= "2.0"} 12 "ssl" 13 "lwt_ssl" 14 "tls" {< "1.0.0"} 15 "lwt" 16 "cohttp" 17 "cohttp-lwt-unix" 18 "yojson" 19 "ppx_yojson" 20 "ppx_deriving" 21 "lwt_ppx" 22 "ezgzip" 23# "alcotest" {with-test} 24# "alcotest-lwt" {with-test} 25] 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36# "@runtest" {with-test} # incompatible with the sandbox (requires network access) 37 "@doc" {with-doc} 38 ] 39] 40dev-repo: "git+https://github.com/roddyyaga/quests.git" 41url { 42 src: "https://github.com/roddyyaga/quests/archive/0.1.3.tar.gz" 43 checksum: [ 44 "md5=83070e5cd344642dd47cc993308d1dc3" 45 "sha512=9875953bf4cacd701b6af39af357b804007152cba6a069d62f200faf26b966674d601c45de9322415e2cd8f414233a40a5618ce6503750652b4d6f02b398579f" 46 ] 47}