diff --git a/packages/nx/src/native/cache/http_remote_cache.rs b/packages/nx/src/native/cache/http_remote_cache.rs index c4fc4e747f..c2f0d1a478 100644 --- a/packages/nx/src/native/cache/http_remote_cache.rs +++ b/packages/nx/src/native/cache/http_remote_cache.rs @@ -1,6 +1,5 @@ use std::{ env, - error::Error, fs::{self}, io::Read, path::Path, diff --git a/packages/nx/src/native/cache/mod.rs b/packages/nx/src/native/cache/mod.rs index c175d78d80..7d0fab4b09 100644 --- a/packages/nx/src/native/cache/mod.rs +++ b/packages/nx/src/native/cache/mod.rs @@ -1,4 +1,3 @@ -pub mod errors; pub mod expand_outputs; pub mod file_ops; pub mod validate_outputs; @@ -6,4 +5,6 @@ pub mod validate_outputs; #[cfg(not(target_arch = "wasm32"))] pub mod cache; #[cfg(not(target_arch = "wasm32"))] +pub mod errors; +#[cfg(not(target_arch = "wasm32"))] pub mod http_remote_cache;