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

@@ -3,9 +3,9 @@ use std::{
sync::{Arc, Mutex},
};
use conduwuit::{Err, Result, err, utils, utils::math::usize_from_f64};
use database::Map;
use lru_cache::LruCache;
use tuwunel_core::{Err, Result, err, utils, utils::math::usize_from_f64};
use tuwunel_database::Map;
use crate::rooms::short::ShortEventId;

View File

@@ -7,7 +7,9 @@ use std::{
time::Instant,
};
use conduwuit::{
use futures::{FutureExt, Stream, StreamExt, TryFutureExt, TryStreamExt};
use ruma::{EventId, OwnedEventId, RoomId};
use tuwunel_core::{
Err, Result, at, debug, debug_error, implement, trace,
utils::{
IterStream,
@@ -15,8 +17,6 @@ use conduwuit::{
},
validated, warn,
};
use futures::{FutureExt, Stream, StreamExt, TryFutureExt, TryStreamExt};
use ruma::{EventId, OwnedEventId, RoomId};
use self::data::Data;
use crate::{Dep, rooms, rooms::short::ShortEventId};