fix(fs): make TempFileSystem public
Some checks failed
Rust / build (map[name:stable]) (push) Failing after 35s
Rust / build (map[name:nightly]) (push) Failing after 1m26s

This commit is contained in:
Paul Campbell 2024-11-09 20:37:16 +00:00
parent a0262a4d05
commit f1cfae7153

View file

@ -68,10 +68,11 @@ mod system;
mod temp;
pub use dir_item::{DirItem, DirItemIterator};
pub use path::*;
pub use path::{PathReal, PathMarker, FileMarker, DirMarker};
pub use reader::Reader;
pub use result::{Error, Result};
pub use system::{DirHandle, FileHandle, FileSystem, PathHandle};
pub use temp::TempFileSystem;
/// Creates a new `FileSystem` for the path.
///