From eb5cc78bcbbdc8cb753e736a6f1deae2b6f534b7 Mon Sep 17 00:00:00 2001 From: Adrian Date: Wed, 23 Mar 2022 15:01:45 -0400 Subject: [PATCH] Update lib.rs Currently OverlayFS and AltRoot is not added to the primary `use` path, therefore, using the lib would require an import as: ``` use vfs::{VfsPath}; use vfs::impls::overlay::OverlayFS; ``` Bringing them in here allows us to utilize the same imports as MemoryFS and PhysicalFS --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index e6a6dfb..a9897ba 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -65,4 +65,6 @@ pub use filesystem::FileSystem; pub use impls::embedded::EmbeddedFS; pub use impls::memory::MemoryFS; pub use impls::physical::PhysicalFS; +pub use impls::overlay::OverlayFS; +pub use impls::altroot::AltrootFS; pub use path::*;