tangled
alpha
login
or
join now
anil.recoil.org
/
aoah-opam-repo
0
fork
atom
The opam repository for my Advent of Agentic Humps 2025
0
fork
atom
overview
issues
pulls
pipelines
+requests
anil.recoil.org
3 months ago
45dbddb7
3192905a
1/1
build.yml
success
3m 48s
+58
1 changed file
expand all
collapse all
unified
split
packages
requests
requests.dev
opam
+58
packages/requests/requests.dev/opam
···
1
1
+
opam-version: "2.0"
2
2
+
synopsis: "Batteries included HTTPS client library for OCaml"
3
3
+
description:
4
4
+
"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."
5
5
+
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
6
6
+
authors: ["Anil Madhavapeddy"]
7
7
+
license: "ISC"
8
8
+
homepage: "https://tangled.org/@anil.recoil.org/ocaml-requests"
9
9
+
bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-requests/issues"
10
10
+
depends: [
11
11
+
"dune" {>= "3.18"}
12
12
+
"ocaml" {>= "5.1.0"}
13
13
+
"eio"
14
14
+
"tls"
15
15
+
"tls-eio"
16
16
+
"ca-certs"
17
17
+
"mirage-crypto"
18
18
+
"mirage-crypto-rng"
19
19
+
"uri"
20
20
+
"jsont"
21
21
+
"bytesrw"
22
22
+
"bytesrw-eio"
23
23
+
"cookeio"
24
24
+
"xdge"
25
25
+
"ptime"
26
26
+
"cmdliner"
27
27
+
"digestif"
28
28
+
"base64"
29
29
+
"logs"
30
30
+
"domain-name"
31
31
+
"cstruct"
32
32
+
"optint"
33
33
+
"conpool"
34
34
+
"decompress"
35
35
+
"bigstringaf"
36
36
+
"magic-mime"
37
37
+
"odoc" {with-doc}
38
38
+
"alcotest" {with-test & >= "1.7.0"}
39
39
+
"eio_main"
40
40
+
]
41
41
+
build: [
42
42
+
["dune" "subst"] {dev}
43
43
+
[
44
44
+
"dune"
45
45
+
"build"
46
46
+
"-p"
47
47
+
name
48
48
+
"-j"
49
49
+
jobs
50
50
+
"@install"
51
51
+
"@doc" {with-doc}
52
52
+
]
53
53
+
]
54
54
+
dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-requests.git"
55
55
+
url {
56
56
+
src: "git+https://tangled.org/@anil.recoil.org/ocaml-requests.git#main"
57
57
+
}
58
58
+
x-maintenance-intent: ["(latest)"]