mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-17 07:41:23 +01:00
enable wildcard_imports lint
This commit is contained in:
parent
3978b9c580
commit
44b15dcb08
2 changed files with 2 additions and 1 deletions
|
|
@ -95,6 +95,7 @@ unused_self = "warn"
|
|||
used_underscore_binding = "warn"
|
||||
verbose_file_reads = "warn"
|
||||
wildcard_dependencies = "warn"
|
||||
wildcard_imports = "warn"
|
||||
|
||||
[package]
|
||||
name = "grapevine"
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue