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

@@ -5,15 +5,6 @@ mod tests;
use std::{fmt::Write, sync::Arc};
use async_trait::async_trait;
use conduwuit::{
Err, Error, PduEvent, Result, implement,
utils::{
IterStream,
future::{BoolExt, TryExtExt},
math::usize_from_f64,
stream::{BroadbandExt, ReadyExt},
},
};
use futures::{FutureExt, Stream, StreamExt, TryFutureExt, pin_mut, stream::FuturesUnordered};
use lru_cache::LruCache;
use ruma::{
@@ -33,6 +24,15 @@ use ruma::{
space::SpaceRoomJoinRule,
};
use tokio::sync::{Mutex, MutexGuard};
use tuwunel_core::{
Err, Error, PduEvent, Result, implement,
utils::{
IterStream,
future::{BoolExt, TryExtExt},
math::usize_from_f64,
stream::{BroadbandExt, ReadyExt},
},
};
pub use self::pagination_token::PaginationToken;
use crate::{Dep, rooms, sending};

View File

@@ -3,8 +3,8 @@ use std::{
str::FromStr,
};
use conduwuit::{Error, Result};
use ruma::{UInt, api::client::error::ErrorKind};
use tuwunel_core::{Error, Result};
use crate::rooms::short::ShortRoomId;