The opam repository for my Advent of Agentic Humps 2025

more

+51
+51
packages/matrix/matrix.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Pure OCaml Matrix SDK" 3 + description: 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 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6 + authors: ["Anil Madhavapeddy"] 7 + license: "ISC" 8 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-matrix" 9 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-matrix/issues" 10 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-matrix.git" 11 + depends: [ 12 + "dune" {>= "3.20"} 13 + "ocaml" {>= "5.1"} 14 + "jsont" 15 + "ptime" 16 + "requests" 17 + "tomlt" 18 + "xdge" 19 + "uri" 20 + "eio" 21 + "logs" 22 + "base64" 23 + "mirage-crypto" 24 + "mirage-crypto-ec" 25 + "mirage-crypto-rng" 26 + "digestif" 27 + "kdf" 28 + "fmt" 29 + "cmdliner" 30 + "alcotest" {with-test} 31 + "eio_main" {with-test} 32 + "odoc" {with-doc} 33 + ] 34 + build: [ 35 + ["dune" "subst"] {dev} 36 + [ 37 + "dune" 38 + "build" 39 + "-p" 40 + name 41 + "-j" 42 + jobs 43 + "@install" 44 + "@runtest" {with-test} 45 + "@doc" {with-doc} 46 + ] 47 + ] 48 + url { 49 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-matrix.git#main" 50 + } 51 + x-maintenance-intent: ["(latest)"]