Files
thoughts/crates/adapters/activitypub/Cargo.toml
Gabriel Kaszewski 5b4b747dd7
Some checks failed
lint / lint (push) Failing after 9m25s
test / unit (push) Has been cancelled
feat(federation): enrich RemoteActor with bio, banner, followers/following URLs
Bumps k-ap to 0.3.1 which adds bio, banner_url, followers_url,
following_url, and also_known_as to RemoteActor. These are populated
from fetched actor JSON at follow/ingest time so followers and following
listings no longer return null profile fields.

Adds migration 015 for the new remote_actors columns, updates all JOIN
queries in postgres-federation to select and return the new fields, and
maps them through k_ap_actor_to_domain.

Also fixes clippy: remove empty line after doc comment in port.rs.
2026-05-29 04:07:52 +02:00

21 lines
524 B
TOML

[package]
name = "activitypub"
version = "0.1.0"
edition = "2021"
[dependencies]
k-ap = { version = "0.3.1", registry = "gitea" }
domain = { workspace = true }
url = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
anyhow = { workspace = true }
chrono = { workspace = true }
uuid = { workspace = true }
async-trait = { workspace = true }
tracing = { workspace = true }
reqwest = { workspace = true }
futures = { workspace = true }
tokio = { workspace = true }
axum = { workspace = true }