From 1955ec118a32d3fa174496abe5442c82c609273a Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Tue, 4 Jan 2022 06:27:37 -0600 Subject: Remove client.rs --- src/client.rs | 5 ----- src/lib.rs | 10 ++-------- 2 files changed, 2 insertions(+), 13 deletions(-) delete mode 100644 src/client.rs diff --git a/src/client.rs b/src/client.rs deleted file mode 100644 index e1fcc89..0000000 --- a/src/client.rs +++ /dev/null @@ -1,5 +0,0 @@ -//! FUSE client. -//! -//! Usually, a kernel module or other OS component takes the role of the FUSE client. This module -//! is a client-wise counterpart to the rest of `blown-fuse` API. So far, this only serves the -//! purpose of having agnostic tests, but wrappers might be written in the future with it. diff --git a/src/lib.rs b/src/lib.rs index e42747d..891c022 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,20 +11,14 @@ compile_error!("Unsupported OS"); use std::time::{SystemTime, UNIX_EPOCH}; pub use nix; - pub use crate::fuse::*; -pub mod client; +pub use nix::errno::Errno; +pub use util::{FuseError, FuseResult}; mod proto; mod util; - mod fuse; -#[doc(no_inline)] -pub use nix::errno::Errno; - -pub use util::{FuseError, FuseResult}; - #[derive(Copy, Clone, Eq, PartialEq)] pub struct Ttl { seconds: u64, -- cgit v1.2.3