Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Oct 24, 2023
1 parent 9e7d437 commit c6bdb3b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/eventloop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ use crate::private::cstr::RawCstrs;
use crate::private::mutex;
use crate::private::waitable::Waitable;

#[allow(unused_imports)]
pub use asyncify::*;

#[cfg(all(feature = "alloc", esp_idf_comp_esp_timer_enabled))]
Expand Down
2 changes: 2 additions & 0 deletions src/mqtt/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ use crate::sys::*;
use crate::handle::RawHandle;
use crate::private::mutex::RawCondvar;

#[allow(unused_imports)]
pub use asyncify::*;

use crate::private::cstr::*;
Expand All @@ -25,6 +26,7 @@ pub use client::{
};
pub use embedded_svc::utils::mqtt::client::{ConnState, ConnStateGuard, Connection, Postbox};

#[allow(unused_imports)]
pub use super::*;

#[derive(Copy, Clone, Debug, Eq, PartialEq)]
Expand Down
1 change: 1 addition & 0 deletions src/timer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ use crate::sys::*;

use ::log::info;

#[allow(unused_imports)]
pub use asyncify::*;

#[cfg(esp_idf_esp_timer_supports_isr_dispatch_method)]
Expand Down

0 comments on commit c6bdb3b

Please sign in to comment.