From 3bad540481494245c070360ef4d1a38412eb4eaa Mon Sep 17 00:00:00 2001 From: G2-Games Date: Tue, 30 Jan 2024 11:37:30 -0600 Subject: [PATCH] Supressed `async_fn_in_trait` lint for now --- src/usb.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/usb.rs b/src/usb.rs index cde8d18..94cba51 100644 --- a/src/usb.rs +++ b/src/usb.rs @@ -1,3 +1,4 @@ +#![cfg_attr(debug_assertions, allow(async_fn_in_trait))] use std::error::Error; use crate::context::UsbInterface;