[package]
edition = "2024"
rust-version = "1.85"
name = "fuser"
version = "0.17.0"
authors = ["Christopher Berner <me@cberner.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Filesystem in Userspace (FUSE) for Rust"
homepage = "https://github.com/cberner/fuser"
documentation = "https://docs.rs/fuser"
readme = "README.md"
keywords = [
"fuse",
"filesystem",
"system",
"bindings",
]
categories = [
"external-ffi-bindings",
"api-bindings",
"filesystem",
"os::unix-apis",
]
license = "MIT"
repository = "https://github.com/cberner/fuser"
[features]
abi-7-20 = []
abi-7-21 = []
abi-7-22 = []
abi-7-23 = []
abi-7-24 = []
abi-7-25 = []
abi-7-26 = []
abi-7-27 = []
abi-7-28 = []
abi-7-29 = []
abi-7-30 = []
abi-7-31 = []
abi-7-36 = []
abi-7-40 = []
default = []
experimental = [
"async-trait",
"tokio",
]
libfuse = []
libfuse2 = ["libfuse"]
libfuse3 = ["libfuse"]
macfuse-4-compat = []
macos-no-mount = []
serializable = ["serde"]
[lib]
name = "fuser"
path = "src/lib.rs"
[[example]]
name = "async_hello"
path = "examples/async_hello.rs"
required-features = ["experimental"]
[[example]]
name = "hello"
path = "examples/hello.rs"
[[example]]
name = "ioctl"
path = "examples/ioctl.rs"
[[example]]
name = "notify_inval_entry"
path = "examples/notify_inval_entry.rs"
[[example]]
name = "notify_inval_inode"
path = "examples/notify_inval_inode.rs"
[[example]]
name = "null"
path = "examples/null.rs"
[[example]]
name = "passthrough"
path = "examples/passthrough.rs"
[[example]]
name = "poll"
path = "examples/poll.rs"
[[example]]
name = "poll_client"
path = "examples/poll_client.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[dependencies.async-trait]
version = "0.1"
optional = true
[dependencies.bitflags]
version = "2.9"
[dependencies.libc]
version = "0.2.51"
[dependencies.log]
version = "0.4.6"
[dependencies.memchr]
version = "2.7.2"
[dependencies.nix]
version = "0.30.0"
features = [
"fs",
"user",
"poll",
"socket",
"uio",
"mount",
"process",
"ioctl",
]
[dependencies.num_enum]
version = "0.7.5"
[dependencies.page_size]
version = "0.6.0"
[dependencies.parking_lot]
version = "0.12"
[dependencies.ref-cast]
version = "1.0.25"
[dependencies.serde]
version = "1.0.102"
features = [
"std",
"derive",
]
optional = true
[dependencies.smallvec]
version = "1.6.1"
[dependencies.tokio]
version = "1.48.0"
features = [
"rt",
"rt-multi-thread",
]
optional = true
[dependencies.zerocopy]
version = "0.8"
features = ["derive"]
[dev-dependencies.bincode]
version = "1.3.1"
[dev-dependencies.clap]
version = "4.4"
features = [
"cargo",
"derive",
]
[dev-dependencies.env_logger]
version = "0.11.7"
[dev-dependencies.nix]
version = "0.30.0"
features = [
"poll",
"fs",
"ioctl",
]
[dev-dependencies.serde]
version = "1.0.102"
features = [
"std",
"derive",
]
[dev-dependencies.tempfile]
version = "3.10.1"
[build-dependencies.pkg-config]
version = "0.3.14"