From 47b5410253bd107eeedbad9af10488df9f508bcd Mon Sep 17 00:00:00 2001 From: Adam Cosner Date: Wed, 8 Apr 2026 00:42:46 -0400 Subject: [PATCH] fix: removed a glob import that was causing a warning The pub use card::* was only exporting card::style, but something else in the file was also exporting the name "style" so there was a conflict. --- src/widget/mod.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/widget/mod.rs b/src/widget/mod.rs index f442b0da..3a60302c 100644 --- a/src/widget/mod.rs +++ b/src/widget/mod.rs @@ -119,8 +119,6 @@ pub mod calendar; pub use calendar::{Calendar, calendar}; pub mod card; -#[doc(inline)] -pub use card::*; pub mod color_picker; #[doc(inline)]