From 5af8425ed8b8ae03cb368320fdd89239cb5489cf Mon Sep 17 00:00:00 2001 From: Jinank Jain Date: Mon, 15 Jan 2024 16:36:50 +0000 Subject: [PATCH] mshv-bindings: Remove unused imports Fix clippy warnings related to unused imports. Signed-off-by: Jinank Jain --- mshv-bindings/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/mshv-bindings/src/lib.rs b/mshv-bindings/src/lib.rs index 0ebf943c..e792d07a 100644 --- a/mshv-bindings/src/lib.rs +++ b/mshv-bindings/src/lib.rs @@ -33,7 +33,6 @@ extern crate serde_derive; pub mod hvdef; pub use hvdef::*; mod unmarshal; -pub use unmarshal::*; #[cfg(feature = "fam-wrappers")] mod fam_wrappers; @@ -44,5 +43,3 @@ pub use fam_wrappers::*; #[cfg(feature = "with-serde")] mod serializers; -#[cfg(feature = "with-serde")] -pub use serializers::*;