My agentic slop goes here. Not intended for anyone else!
1(lang dune 3.0)
2(name requests)
3
4(generate_opam_files true)
5
6(source
7 (github username/requests))
8
9(authors "Your Name")
10
11(maintainers "Your Name")
12
13(license MIT)
14
15(package
16 (name requests)
17 (synopsis "Clean Eio-style HTTPS client library for OCaml")
18 (description "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")
19 (depends
20 ocaml
21 (dune (>= 3.0))
22 eio
23 cohttp-eio
24 tls-eio
25 ca-certs
26 mirage-crypto-rng-eio
27 uri
28 digestif
29 base64
30 logs))