My aggregated monorepo of OCaml code, automaintained
1(lang dune 3.18)
2
3(name requests)
4
5(generate_opam_files true)
6
7(license ISC)
8(authors "Anil Madhavapeddy")
9(homepage "https://tangled.org/@anil.recoil.org/ocaml-requests")
10(maintainers "Anil Madhavapeddy <anil@recoil.org>")
11(bug_reports "https://tangled.org/@anil.recoil.org/ocaml-requests/issues")
12(maintenance_intent "(latest)")
13
14(package
15 (name requests)
16 (synopsis "Batteries included HTTPS client library for OCaml")
17 (description
18 "A modern HTTP(S) client library for OCaml with Eio support, providing \
19 a clean API for making web requests with automatic TLS/CA certificate handling. \
20 Inspired by the Python's requests library, this provides a simple, intuitive \
21 interface for HTTP operations.")
22 (depends
23 (ocaml (>= 5.1.0))
24 eio
25 tls
26 tls-eio
27 ca-certs
28 mirage-crypto
29 mirage-crypto-rng
30 mirage-crypto-ec
31 mirage-crypto-pk
32 eqaf
33 uri
34 jsont
35 bytesrw
36 bytesrw-eio
37 cookeio
38 xdge
39 ptime
40 cmdliner
41 digestif
42 base64
43 logs
44 domain-name
45 cstruct
46 optint
47 conpool
48 decompress
49 bigstringaf
50 magic-mime
51 (odoc :with-doc)
52 (alcotest (and :with-test (>= 1.7.0)))
53 eio_main ))