fractal-fuse 0.4.0

Async FUSE library using io_uring (FUSE_OVER_IO_URING) and compio runtime for high-performance userspace filesystems on Linux 6.14+
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

pub mod abi;
pub mod dispatch;
pub mod filesystem;
pub mod mount;
pub mod notify;
pub mod passthrough;
pub mod ring;
pub mod session;
pub mod types;

pub use filesystem::{Filesystem, FsResult};
pub use mount::MountOptions;
pub use notify::FuseNotifier;
pub use ring::DEFAULT_QUEUE_DEPTH;
pub use session::{Session, SessionShutdownHandle};
pub use types::*;