The opam repository for my Advent of Agentic Humps 2025

Add webfinger.dev package

RFC 7033 WebFinger and RFC 7565 acct URI scheme implementation for OCaml.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+45
+45
packages/webfinger/webfinger.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "RFC 7033 WebFinger protocol implementation for OCaml" 3 + description: """ 4 + A complete implementation of RFC 7033 (WebFinger) and RFC 7565 (acct URI scheme) 5 + for discovering information about resources identified by URIs. Includes type-safe 6 + JSON Resource Descriptor (JRD) encoding/decoding using jsont, an Eio-based HTTP 7 + client using the requests library, and a command-line tool for WebFinger lookups.""" 8 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 9 + authors: ["Anil Madhavapeddy"] 10 + license: "ISC" 11 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-webfinger" 12 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-webfinger/issues" 13 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-webfinger.git" 14 + depends: [ 15 + "ocaml" {>= "5.2.0"} 16 + "dune" {>= "3.0"} 17 + "jsont" {>= "0.1.0"} 18 + "jsont-bytesrw" {>= "0.1.0"} 19 + "eio" {>= "1.0"} 20 + "eio_main" {>= "1.0"} 21 + "requests" {>= "0.1.0"} 22 + "uri" {>= "4.0.0"} 23 + "cmdliner" {>= "1.2.0"} 24 + "logs" {>= "0.7.0"} 25 + "fmt" {>= "0.9.0"} 26 + "odoc" {with-doc} 27 + "alcotest" {with-test} 28 + ] 29 + build: [ 30 + ["dune" "subst"] {dev} 31 + [ 32 + "dune" 33 + "build" 34 + "-p" 35 + name 36 + "-j" 37 + jobs 38 + "@install" 39 + "@runtest" {with-test} 40 + "@doc" {with-doc} 41 + ] 42 + ] 43 + url { 44 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-webfinger.git#main" 45 + }