Files
k-ap/Cargo.toml
Gabriel Kaszewski bc857b2c08 feat: signed actor lookup and display_name on DbActor
Add display_name field to DbActor, populated from AP Person.name in
from_json. Expose LookedUpActor type and lookup_actor_by_handle method
on ActivityPubService — uses the existing signed webfinger_https path
so strict instances (Threads, etc.) return full actor data.
2026-05-27 22:21:58 +02:00

24 lines
854 B
TOML

[package]
name = "k-ap"
version = "0.1.4"
edition = "2024"
description = "Generic ActivityPub protocol layer"
license = "MIT"
publish = ["gitea"]
[dependencies]
tokio = { version = "1.0", features = ["macros", "net", "rt", "rt-multi-thread", "sync", "time"] }
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.0", features = ["v4", "v5", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1.0"
tracing = "0.1"
async-trait = "0.1"
axum = { version = "0.8", features = ["macros"] }
reqwest = { version = "0.13", features = ["json"] }
url = { version = "2", features = ["serde"] }
enum_delegate = "0.2"
activitypub_federation = "0.7.0-beta.11"