1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# `indieweb`
This is a collection of projects helping to implement various standards and algorithms that the
IndieWeb community works towards. You can view the list of specifications at
<https://spec.indieweb.org>. It also includes projects that help you _test your implementations_ to
see what required parts are missing and what optional ones you can add. If there's an example that
you need, file an issue at <https://todo.sr.ht/~jacky/indieweb-rust>.
## Goals
- [ ] HTTP client agnostic
- [ ] Normalized interactions with IndieWeb services
- [ ] Errors for most known usecases
## Features
- [link relationship resolution][linkrel]
- [Micropub][]
- [Microsub][]
- [IndieAuth][]
- [WebSub][]
- [Webmention][]
[Micropub]: https://micropub.spec.indieweb.org/
[Microsub]: http://microsub.spec.indieweb.org/
[IndieAuth]: https://indieauth.spec.indieweb.org/
[Webmention]: https://webmention.net/draft/
[WebSub]: https://www.w3.org/TR/websub/
[linkrel]: https://microformats.org/wiki/rel
|