#fuse #bindings #system

cntr-fuse-abi

ABI types for communicating with the FUSE kernel interface

2 releases

0.4.1 Mar 1, 2021
0.4.0 Dec 16, 2020

#1649 in Filesystem

Download history 20/week @ 2024-03-11 13/week @ 2024-03-18 19/week @ 2024-03-25 66/week @ 2024-04-01 19/week @ 2024-04-08 9/week @ 2024-04-15 21/week @ 2024-04-22 25/week @ 2024-04-29 16/week @ 2024-05-06 17/week @ 2024-05-13 57/week @ 2024-05-20 28/week @ 2024-05-27 22/week @ 2024-06-03 32/week @ 2024-06-10 27/week @ 2024-06-17 37/week @ 2024-06-24

120 downloads per month
Used in 3 crates (via cntr-fuse)

MIT license

30KB
880 lines

Rust FUSE ABI types

This crate contains ABI types for communicating with the FUSE kernel interface. See the fuse crate for more information.


lib.rs:

FUSE kernel interface.

Types and definitions used for communication between the kernel driver and the userspace part of a FUSE filesystem. Since the kernel driver may be installed independently, the ABI interface is versioned and capabilities are exchanged during the initialization (mounting) of a filesystem.

OSXFUSE (macOS): https://github.com/osxfuse/fuse/blob/master/include/fuse_kernel.h

  • supports ABI 7.8 in OSXFUSE 2.x
  • supports ABI 7.19 since OSXFUSE 3.0.0

libfuse (Linux/BSD): https://github.com/libfuse/libfuse/blob/master/include/fuse_kernel.h

  • supports ABI 7.8 since FUSE 2.6.0
  • supports ABI 7.12 since FUSE 2.8.0
  • supports ABI 7.18 since FUSE 2.9.0
  • supports ABI 7.19 since FUSE 2.9.1
  • supports ABI 7.26 since FUSE 3.0.0

Items without a version annotation are valid with ABI 7.8 and later

No runtime deps

Features