ATProto OAuth: client, discovery, and session management
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

atproto-oauth: declare missing deps (atproto-handle, did{,-plc,-web}, dpop, eio, oauth, requests)

[monopam lint] flagged these as used in the libraries' META requires
but not declared in the opam depends. Add them so the package opam
metadata matches the library's actual build requirements.

+16
+8
atproto-oauth.opam
··· 10 10 "ocaml" {>= "5.1"} 11 11 "fmt" 12 12 "json" 13 + "atproto-handle" 14 + "did" 15 + "did-plc" 16 + "did-web" 17 + "dpop" 18 + "eio" 19 + "oauth" 20 + "requests" 13 21 "alcotest" {with-test} 14 22 "odoc" {with-doc} 15 23 ]
+8
dune-project
··· 15 15 (ocaml (>= 5.1)) 16 16 fmt 17 17 json 18 + atproto-handle 19 + did 20 + did-plc 21 + did-web 22 + dpop 23 + eio 24 + oauth 25 + requests 18 26 (alcotest :with-test)))