diff --git a/crates/filesystem/src/project.rs b/crates/filesystem/src/project.rs index 88b4acc6..152f8d3b 100644 --- a/crates/filesystem/src/project.rs +++ b/crates/filesystem/src/project.rs @@ -15,6 +15,9 @@ // You should have received a copy of the GNU General Public License // along with Luminol. If not, see . +#[cfg(target_arch = "wasm32")] +use itertools::Itertools; + use crate::FileSystem as _; use crate::{archiver, host, list, path_cache}; use crate::{DirEntry, Error, Metadata, OpenFlags, Result};