diff --git a/src/imfs/noop_fetcher.rs b/src/imfs/noop_fetcher.rs index 02784fd2..be97aa68 100644 --- a/src/imfs/noop_fetcher.rs +++ b/src/imfs/noop_fetcher.rs @@ -1,6 +1,9 @@ //! Implements the IMFS fetcher interface for a fake filesystem using Rust's //! std::fs interface. +// This interface is only used for testing, so it's okay if it isn't used. +#![allow(unused)] + use std::{ io, path::{Path, PathBuf}, diff --git a/src/imfs/snapshot.rs b/src/imfs/snapshot.rs index f84f9b3b..3f12e519 100644 --- a/src/imfs/snapshot.rs +++ b/src/imfs/snapshot.rs @@ -1,3 +1,6 @@ +// This file is non-critical and used for testing, so it's okay if it's unused. +#![allow(unused)] + use std::collections::HashMap; #[derive(Debug, Clone)]