My agentic slop goes here. Not intended for anyone else!
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "Clean Eio-style HTTPS client library for OCaml"
4description:
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"
6maintainer: ["Your Name"]
7authors: ["Your Name"]
8license: "MIT"
9homepage: "https://github.com/username/requests"
10bug-reports: "https://github.com/username/requests/issues"
11depends: [
12 "ocaml"
13 "dune" {>= "3.0" & >= "3.0"}
14 "eio"
15 "cohttp-eio"
16 "tls-eio"
17 "ca-certs"
18 "mirage-crypto-rng-eio"
19 "uri"
20 "digestif"
21 "base64"
22 "logs"
23 "odoc" {with-doc}
24]
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "@install"
35 "@runtest" {with-test}
36 "@doc" {with-doc}
37 ]
38]
39dev-repo: "git+https://github.com/username/requests.git"