diff --git a/Cargo.toml b/Cargo.toml index 578772b8..4e0d51d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -95,6 +95,7 @@ unused_self = "warn" used_underscore_binding = "warn" verbose_file_reads = "warn" wildcard_dependencies = "warn" +wildcard_imports = "warn" [package] name = "grapevine" diff --git a/src/service/rooms/event_handler.rs b/src/service/rooms/event_handler.rs index 9e6b4802..c334f6d8 100644 --- a/src/service/rooms/event_handler.rs +++ b/src/service/rooms/event_handler.rs @@ -39,7 +39,7 @@ use serde_json::value::RawValue as RawJsonValue; use tokio::sync::{RwLock, RwLockWriteGuard, Semaphore}; use tracing::{debug, error, info, trace, warn}; -use crate::{service::*, services, Error, PduEvent, Result}; +use crate::{service::pdu, services, Error, PduEvent, Result}; use super::state_compressor::CompressedStateEvent;