Skip to content

Commit

Permalink
Correct import granularity
Browse files Browse the repository at this point in the history
  • Loading branch information
DJMcNab committed Sep 27, 2024
1 parent 4848ce3 commit 5f4e8db
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions vello/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,11 @@ mod shaders;
#[cfg(feature = "wgpu")]
mod wgpu_engine;

use std::sync::atomic::AtomicBool;
#[cfg(feature = "wgpu")]
use std::{num::NonZeroUsize, sync::Arc};
use std::{
num::NonZeroUsize,
sync::{atomic::AtomicBool, Arc},
};

/// Styling and composition primitives.
pub use peniko;
Expand Down

0 comments on commit 5f4e8db

Please sign in to comment.