The opam repository for my Advent of Agentic Humps 2025

activitypub

+43
+43
packages/apubt/apubt.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "ActivityPub client library for OCaml with Eio" 3 + description: 4 + "ActivityPub/ActivityStreams protocol implementation for OCaml. Provides typed representations of ActivityPub actors, activities, and objects with bidirectional JSON codecs using jsont. Includes an Eio-based HTTP client for federation with HTTP signature support." 5 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6 + authors: ["Anil Madhavapeddy"] 7 + license: "ISC" 8 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-apubt" 9 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-apubt/issues" 10 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-apubt.git" 11 + depends: [ 12 + "dune" {>= "3.20"} 13 + "ocaml" {>= "5.1.0"} 14 + "jsont" {>= "0.2.0"} 15 + "jsont-bytesrw" 16 + "eio" {>= "1.0"} 17 + "eio_main" {>= "1.0"} 18 + "requests" {>= "0.1.0"} 19 + "cmdliner" {>= "1.2.0"} 20 + "logs" {>= "0.7.0"} 21 + "fmt" {>= "0.9.0"} 22 + "ptime" 23 + "x509" 24 + "odoc" {with-doc} 25 + ] 26 + build: [ 27 + ["dune" "subst"] {dev} 28 + [ 29 + "dune" 30 + "build" 31 + "-p" 32 + name 33 + "-j" 34 + jobs 35 + "@install" 36 + "@runtest" {with-test} 37 + "@doc" {with-doc} 38 + ] 39 + ] 40 + url { 41 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-apubt.git#main" 42 + } 43 + x-maintenance-intent: ["(latest)"]