summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector@hecrj.dev>2024-09-20 18:54:09 +0200
committerLibravatar GitHub <noreply@github.com>2024-09-20 18:54:09 +0200
commitca93c41789788694b562493d970d40209dd6738f (patch)
tree04fa2cf17e3529981e5ed952f8d8f5ad50b64e4d /src
parent53f88fe2cf5de51aa1ffa043600cc2c467b8c8b8 (diff)
parent91c00e4abf0a21c2b10535a1672e017249cfbcee (diff)
downloadiced-ca93c41789788694b562493d970d40209dd6738f.tar.gz
iced-ca93c41789788694b562493d970d40209dd6738f.tar.bz2
iced-ca93c41789788694b562493d970d40209dd6738f.zip
Merge pull request #2593 from iced-rs/fix/slow-ci-docs
Move `wgpu` re-export to root module
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
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;