mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-16 23:31:24 +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"
|
used_underscore_binding = "warn"
|
||||||
verbose_file_reads = "warn"
|
verbose_file_reads = "warn"
|
||||||
wildcard_dependencies = "warn"
|
wildcard_dependencies = "warn"
|
||||||
|
wildcard_imports = "warn"
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "grapevine"
|
name = "grapevine"
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ use serde_json::value::RawValue as RawJsonValue;
|
||||||
use tokio::sync::{RwLock, RwLockWriteGuard, Semaphore};
|
use tokio::sync::{RwLock, RwLockWriteGuard, Semaphore};
|
||||||
use tracing::{debug, error, info, trace, warn};
|
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;
|
use super::state_compressor::CompressedStateEvent;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue