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.
37 lines
1001 B
TOML
37 lines
1001 B
TOML
[package]
|
|
name = "bootstrap"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "thoughts"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
presentation = { workspace = true }
|
|
domain = { workspace = true }
|
|
postgres = { workspace = true }
|
|
postgres-search = { workspace = true }
|
|
postgres-federation = { workspace = true }
|
|
activitypub = { workspace = true }
|
|
k-ap = { version = "0.3.1", registry = "gitea" }
|
|
serde_json = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
nats = { workspace = true }
|
|
event-transport = { workspace = true }
|
|
event-payload = { workspace = true }
|
|
auth = { workspace = true }
|
|
storage = { workspace = true }
|
|
application = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
async-nats = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
axum = { workspace = true }
|
|
tower-http = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
dotenvy = { workspace = true }
|
|
tower_governor = "0.8"
|
|
http = "1"
|