diff --git a/proxmox-acme-api/src/challenge_schemas.rs b/proxmox-acme-api/src/challenge_schemas.rs index 40a6a6af..e66e327e 100644 --- a/proxmox-acme-api/src/challenge_schemas.rs +++ b/proxmox-acme-api/src/challenge_schemas.rs @@ -49,6 +49,7 @@ fn load_dns_challenge_schema() -> Result, Error> { } pub fn get_cached_challenge_schemas() -> Result { + #[allow(clippy::type_complexity)] static CACHE: LazyLock>, SystemTime)>>> = LazyLock::new(|| Mutex::new(None)); diff --git a/proxmox-rest-server/examples/minimal-rest-server.rs b/proxmox-rest-server/examples/minimal-rest-server.rs index d6a5f2eb..23be586c 100644 --- a/proxmox-rest-server/examples/minimal-rest-server.rs +++ b/proxmox-rest-server/examples/minimal-rest-server.rs @@ -31,6 +31,7 @@ impl UserInformation for DummyUserInfo { } } +#[allow(clippy::type_complexity)] fn check_auth<'a>( _headers: &'a HeaderMap, _method: &'a Method, diff --git a/proxmox-router/src/stream/parsing.rs b/proxmox-router/src/stream/parsing.rs index 69ae1994..1726d2f8 100644 --- a/proxmox-router/src/stream/parsing.rs +++ b/proxmox-router/src/stream/parsing.rs @@ -60,6 +60,7 @@ where enum RecordsInner { New(R), + #[allow(clippy::type_complexity)] Reading(Pin, R)>>> + Send + Sync>>), Done, }