Fix unused import warnings on nightly

This commit is contained in:
Kirill Chibisov 2023-10-25 15:58:31 +04:00 committed by GitHub
parent d37d1a03b2
commit b2a2ec91ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View file

@ -1,7 +1,5 @@
use x11_dl::xmd::CARD32;
pub use x11_dl::{
error::OpenError, keysym::*, xcursor::*, xinput::*, xinput2::*, xlib::*, xlib_xcb::*,
};
pub use x11_dl::{error::OpenError, xcursor::*, xinput2::*, xlib::*, xlib_xcb::*};
// Isn't defined by x11_dl
#[allow(non_upper_case_globals)]

View file

@ -13,9 +13,7 @@ mod randr;
mod window_property;
mod wm;
pub use self::{
client_msg::*, geometry::*, hint::*, icon::*, input::*, randr::*, window_property::*, wm::*,
};
pub use self::{geometry::*, hint::*, input::*, window_property::*, wm::*};
use std::{
mem::{self, MaybeUninit},