From 02ba8a5d11376fccf9e8fe47d21486d38d3527c0 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Fri, 9 Aug 2019 16:45:13 +0200 Subject: [PATCH] pxar: add fuse module and expose its pub functionality. --- src/pxar.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pxar.rs b/src/pxar.rs index 5c36424d..0696fd0b 100644 --- a/src/pxar.rs +++ b/src/pxar.rs @@ -71,6 +71,9 @@ pub use match_pattern::*; mod dir_stack; pub use dir_stack::*; +pub mod fuse; +pub use fuse::*; + pub mod catalog; mod helper;