From 91c00e4abf0a21c2b10535a1672e017249cfbcee Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 20 Sep 2024 18:35:18 +0200 Subject: Move `wgpu` re-export to root module This seems to fix a `cargo doc` performance issue; and it makes more sense anyways. --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/lib.rs b/src/lib.rs index 91d8e53f..8f526cfd 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -483,6 +483,9 @@ pub use iced_futures::stream; #[cfg(feature = "highlighter")] pub use iced_highlighter as highlighter; +#[cfg(feature = "wgpu")] +pub use iced_renderer::wgpu::wgpu; + mod error; mod program; -- cgit