forked from rojo-rbx/rojo
Allow IMFS testing features to be unused
This commit is contained in:
@@ -1,6 +1,9 @@
|
|||||||
//! Implements the IMFS fetcher interface for a fake filesystem using Rust's
|
//! Implements the IMFS fetcher interface for a fake filesystem using Rust's
|
||||||
//! std::fs interface.
|
//! std::fs interface.
|
||||||
|
|
||||||
|
// This interface is only used for testing, so it's okay if it isn't used.
|
||||||
|
#![allow(unused)]
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
io,
|
io,
|
||||||
path::{Path, PathBuf},
|
path::{Path, PathBuf},
|
||||||
|
|||||||
@@ -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;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
|
|||||||
Reference in New Issue
Block a user