File: README.md

package info (click to toggle)
rust-indieweb 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 980 kB
  • sloc: makefile: 12; sh: 1
file content (38 lines) | stat: -rw-r--r-- 831 bytes parent folder | download
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
30
31
32
33
34
35
36
37
38
# IndieWeb Library

A Rust library for implementing IndieWeb standards and algorithms.

## Overview

Provides tools for IndieWeb protocols including authentication, publishing, and communication standards.

## Installation

Install from crates.io for stable releases:

```bash
cargo add indieweb
```

Or from Git for the latest development version:

```bash
cargo add --git https://git.sr.ht/~jacky/indieweb-rust indieweb
```

## Modules

- **Algorithms**: Link resolution, authorship detection, representative h-card parsing
- **Standards**: IndieAuth, Micropub, Webmention, WebSub implementations
- **Traits**: Common interfaces for IndieWeb interactions

## Usage

For local development, add to your Cargo.toml:

```toml
[dependencies]
indieweb = { path = "../path/to/library" }
```

For detailed API usage, see the source code.