chore: switch activitypub-base to k-ap git dep

This commit is contained in:
2026-05-17 22:47:32 +02:00
parent d56d34cc27
commit 6936b7ce62
22 changed files with 28 additions and 28 deletions

View File

@@ -5,7 +5,7 @@ edition = "2021"
[dependencies]
domain = { workspace = true }
activitypub-base = { workspace = true }
activitypub = { workspace = true }
event-payload = { workspace = true }
sqlx = { workspace = true }
uuid = { workspace = true }

View File

@@ -6,7 +6,7 @@ const THOUGHTS_PATH_PREFIX: &str = "/thoughts/";
use chrono::{DateTime, Utc};
use sqlx::PgPool;
use activitypub_base::{AcceptNoteInput, ActivityPubRepository, ActorApUrls, OutboxEntry};
use activitypub::{AcceptNoteInput, ActivityPubRepository, ActorApUrls, OutboxEntry};
use domain::{
errors::DomainError,
models::thought::{Thought, Visibility},

View File

@@ -1,5 +1,5 @@
use super::*;
use activitypub_base::{AcceptNoteInput, ActivityPubRepository};
use activitypub::{AcceptNoteInput, ActivityPubRepository};
#[sqlx::test(migrations = "./migrations")]
async fn intern_remote_actor_is_idempotent(pool: sqlx::PgPool) {