Rename crates.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-04-22 01:41:02 +00:00
parent 0024354345
commit 9b658d86b2
316 changed files with 1590 additions and 1593 deletions

View File

@@ -6,8 +6,6 @@ mod user_can;
use std::sync::Arc;
use async_trait::async_trait;
use conduwuit::{Result, err};
use database::Map;
use ruma::{
EventEncryptionAlgorithm, JsOption, OwnedRoomAliasId, RoomId, UserId,
events::{
@@ -27,6 +25,8 @@ use ruma::{
},
room::RoomType,
};
use tuwunel_core::{Result, err};
use tuwunel_database::Map;
use crate::{Dep, rooms};

View File

@@ -1,12 +1,12 @@
use std::borrow::Borrow;
use conduwuit::{
Result, err, implement,
matrix::{PduEvent, StateKey},
};
use futures::{Stream, StreamExt, TryFutureExt};
use ruma::{EventId, RoomId, events::StateEventType};
use serde::Deserialize;
use tuwunel_core::{
Result, err, implement,
matrix::{PduEvent, StateKey},
};
/// Returns a single PDU from `room_id` with key (`event_type`,`state_key`).
#[implement(super::Service)]

View File

@@ -1,4 +1,3 @@
use conduwuit::{implement, utils::stream::ReadyExt};
use futures::StreamExt;
use ruma::{
EventId, RoomId, ServerName,
@@ -7,6 +6,7 @@ use ruma::{
room::history_visibility::{HistoryVisibility, RoomHistoryVisibilityEventContent},
},
};
use tuwunel_core::{implement, utils::stream::ReadyExt};
/// Whether a server is allowed to see an event through federation, based on
/// the room's history_visibility at that event's state.

View File

@@ -1,15 +1,5 @@
use std::{borrow::Borrow, ops::Deref, sync::Arc};
use conduwuit::{
Result, at, err, implement,
matrix::{PduEvent, StateKey},
pair_of,
utils::{
result::FlatOk,
stream::{BroadbandExt, IterStream, ReadyExt, TryIgnore},
},
};
use conduwuit_database::Deserialized;
use futures::{FutureExt, Stream, StreamExt, TryFutureExt, future::try_join, pin_mut};
use ruma::{
EventId, OwnedEventId, UserId,
@@ -19,6 +9,16 @@ use ruma::{
},
};
use serde::Deserialize;
use tuwunel_core::{
Result, at, err, implement,
matrix::{PduEvent, StateKey},
pair_of,
utils::{
result::FlatOk,
stream::{BroadbandExt, IterStream, ReadyExt, TryIgnore},
},
};
use tuwunel_database::Deserialized;
use crate::rooms::{
short::{ShortEventId, ShortStateHash, ShortStateKey},

View File

@@ -1,4 +1,3 @@
use conduwuit::{Err, Result, implement, pdu::PduBuilder};
use ruma::{
EventId, RoomId, UserId,
events::{
@@ -10,6 +9,7 @@ use ruma::{
},
},
};
use tuwunel_core::{Err, Result, implement, pdu::PduBuilder};
use crate::rooms::state::RoomMutexGuard;