Allow IMFS testing features to be unused

This commit is contained in:
Lucien Greathouse
2019-09-19 11:13:27 -07:00
parent ec8861e983
commit 196d27b959
2 changed files with 6 additions and 0 deletions

View File

@@ -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},

View File

@@ -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)]