A batteries included HTTP/1.1 client in OCaml

deps

+8 -12
+4 -8
dune-project
··· 1 - (lang dune 3.20) 1 + (lang dune 3.18) 2 2 3 3 (name requests) 4 4 ··· 11 11 (bug_reports "https://tangled.org/@anil.recoil.org/ocaml-requests/issues") 12 12 (maintenance_intent "(latest)") 13 13 14 - ; NOTE: Do NOT add a (source ...) field for Tangled projects 15 - ; Tangled uses the homepage/bug_reports URLs to determine the source repository 16 - 17 14 (package 18 15 (name requests) 19 - (synopsis "Clean Eio-style HTTPS client library for OCaml") 16 + (synopsis "Batteries included HTTPS client library for OCaml") 20 17 (description 21 18 "A modern HTTP(S) client library for OCaml with Eio support, providing \ 22 19 a clean API for making web requests with automatic TLS/CA certificate handling. \ 23 - Inspired by Python's requests library, this provides a simple, intuitive \ 20 + Inspired by the Python's requests library, this provides a simple, intuitive \ 24 21 interface for HTTP operations.") 25 22 (depends 26 23 (ocaml (>= 5.1.0)) 27 - (dune (>= 3.20)) 28 24 eio 29 25 tls 30 26 tls-eio ··· 49 45 magic-mime 50 46 (odoc :with-doc) 51 47 (alcotest (and :with-test (>= 1.7.0))) 52 - (eio_main :with-test))) 48 + eio_main ))
+4 -4
requests.opam
··· 1 1 # This file is generated by dune, edit dune-project instead 2 2 opam-version: "2.0" 3 - synopsis: "Clean Eio-style HTTPS client library for OCaml" 3 + synopsis: "Batteries included HTTPS client library for OCaml" 4 4 description: 5 - "A modern HTTP(S) client library for OCaml with Eio support, providing a clean API for making web requests with automatic TLS/CA certificate handling. Inspired by Python's requests library, this provides a simple, intuitive interface for HTTP operations." 5 + "A modern HTTP(S) client library for OCaml with Eio support, providing a clean API for making web requests with automatic TLS/CA certificate handling. Inspired by the Python's requests library, this provides a simple, intuitive interface for HTTP operations." 6 6 maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 7 7 authors: ["Anil Madhavapeddy"] 8 8 license: "ISC" 9 9 homepage: "https://tangled.org/@anil.recoil.org/ocaml-requests" 10 10 bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-requests/issues" 11 11 depends: [ 12 + "dune" {>= "3.18"} 12 13 "ocaml" {>= "5.1.0"} 13 - "dune" {>= "3.20" & >= "3.20"} 14 14 "eio" 15 15 "tls" 16 16 "tls-eio" ··· 35 35 "magic-mime" 36 36 "odoc" {with-doc} 37 37 "alcotest" {with-test & >= "1.7.0"} 38 - "eio_main" {with-test} 38 + "eio_main" 39 39 ] 40 40 build: [ 41 41 ["dune" "subst"] {dev}