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
more
anil.recoil.org
2 months ago
2f148b15
301ed637
0/1
build.yml
failed
2m 20s
+51
1 changed file
expand all
collapse all
unified
split
packages
matrix
matrix.dev
opam
+51
packages/matrix/matrix.dev/opam
reviewed
···
1
1
+
opam-version: "2.0"
2
2
+
synopsis: "Pure OCaml Matrix SDK"
3
3
+
description:
4
4
+
"A pure OCaml implementation of the Matrix client SDK with protocol types, HTTP client, and Eio integration. Provides matrix.proto for protocol types, matrix.client for the HTTP client, and matrix.eio for Eio-idiomatic usage."
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-matrix"
9
9
+
bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-matrix/issues"
10
10
+
dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-matrix.git"
11
11
+
depends: [
12
12
+
"dune" {>= "3.20"}
13
13
+
"ocaml" {>= "5.1"}
14
14
+
"jsont"
15
15
+
"ptime"
16
16
+
"requests"
17
17
+
"tomlt"
18
18
+
"xdge"
19
19
+
"uri"
20
20
+
"eio"
21
21
+
"logs"
22
22
+
"base64"
23
23
+
"mirage-crypto"
24
24
+
"mirage-crypto-ec"
25
25
+
"mirage-crypto-rng"
26
26
+
"digestif"
27
27
+
"kdf"
28
28
+
"fmt"
29
29
+
"cmdliner"
30
30
+
"alcotest" {with-test}
31
31
+
"eio_main" {with-test}
32
32
+
"odoc" {with-doc}
33
33
+
]
34
34
+
build: [
35
35
+
["dune" "subst"] {dev}
36
36
+
[
37
37
+
"dune"
38
38
+
"build"
39
39
+
"-p"
40
40
+
name
41
41
+
"-j"
42
42
+
jobs
43
43
+
"@install"
44
44
+
"@runtest" {with-test}
45
45
+
"@doc" {with-doc}
46
46
+
]
47
47
+
]
48
48
+
url {
49
49
+
src: "git+https://tangled.org/@anil.recoil.org/ocaml-matrix.git#main"
50
50
+
}
51
51
+
x-maintenance-intent: ["(latest)"]