An Elixir toolkit for the AT Protocol. hexdocs.pm/atex
elixir bluesky atproto decentralization

docs: update roadmap in README and add Tangled URL to Mix package

ovyerus.com 9e142f68 28303d87

verified
+6 -5
+2 -2
README.md
··· 9 9 - [x] TID codecs 10 10 - [x] XRPC client 11 11 - [x] DID & handle resolution service with a cache 12 - - [ ] Structs with validation for the common lexicons 13 - - [ ] Probably codegen for doing this with other lexicons 12 + - [x] Macro for converting a Lexicon definition into a runtime-validation schema 13 + - [ ] Codegen to convert a directory of lexicons 14 14 - [ ] Extended XRPC client with support for validated inputs/outputs 15 15 - [ ] Oauth stuff 16 16
+4 -3
mix.exs
··· 2 2 use Mix.Project 3 3 4 4 @version "0.3.0" 5 - @source_url "https://github.com/cometsh/atex" 5 + @github "https://github.com/cometsh/atex" 6 + @tangled "https://tangled.sh/@comet.sh/atex" 6 7 7 8 def project do 8 9 [ ··· 41 42 defp package do 42 43 [ 43 44 licenses: ["MIT"], 44 - links: %{"GitHub" => @source_url} 45 + links: %{"GitHub" => @github, "Tangled" => @tangled} 45 46 ] 46 47 end 47 48 ··· 52 53 "README.md": [title: "Overview"] 53 54 ], 54 55 main: "readme", 55 - source_url: @source_url, 56 + source_url: @github, 56 57 source_ref: "v#{@version}", 57 58 formatters: ["html"] 58 59 ]