In which I play around with the AT Protocol
0

Configure Feed

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

Initial commit

David Hagerty (Jun 12, 2026, 9:12 PM EDT) 555e4ddf

+31
+17
AGENTS.md
··· 1 + # Development workflow 2 + 3 + ## 1. Make changes 4 + 5 + Start with tests. 6 + 7 + Workspace operations are available via `cargo workspace`. 8 + 9 + ## 2. Lint/format 10 + 11 + `cargo fmt --all` 12 + 13 + `cargo clippy --all-targets -Dwarnings` 14 + 15 + ## 3. Run tests 16 + 17 + `cargo nextest`
+5
Cargo.toml
··· 1 + [workspace] 2 + resolver = "3" 3 + members = [ 4 + "pds", 5 + ]
+6
pds/Cargo.toml
··· 1 + [package] 2 + name = "pds" 3 + version = "0.0.0" 4 + edition = "2024" 5 + 6 + [dependencies]
+3
pds/src/main.rs
··· 1 + fn main() { 2 + println!("Hello, world!"); 3 + }