confuse 0.1.0

A fuser-compatible filesystem API facade using Dokan on Windows and fuser elsewhere.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.96"
name = "confuse"
version = "0.1.0"
authors = ["inschrift.spruch.raum <inschrift.spruch.raum@outlook.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fuser-compatible filesystem API facade using Dokan on Windows and fuser elsewhere."
homepage = "https://github.com/inschrift-spruch-raum/confuse"
documentation = "https://github.com/inschrift-spruch-raum/confuse/tree/docs"
readme = "README.md"
keywords = [
    "fuse",
    "fuser",
    "dokan",
    "filesystem",
    "windows",
]
categories = [
    "filesystem",
    "os::windows-apis",
    "api-bindings",
]
license = "MIT"
repository = "https://github.com/inschrift-spruch-raum/confuse"

[features]
abi-7-20 = ["fuser/abi-7-20"]
abi-7-21 = ["fuser/abi-7-21"]
abi-7-22 = ["fuser/abi-7-22"]
abi-7-23 = ["fuser/abi-7-23"]
abi-7-24 = ["fuser/abi-7-24"]
abi-7-25 = ["fuser/abi-7-25"]
abi-7-26 = ["fuser/abi-7-26"]
abi-7-27 = ["fuser/abi-7-27"]
abi-7-28 = ["fuser/abi-7-28"]
abi-7-29 = ["fuser/abi-7-29"]
abi-7-30 = ["fuser/abi-7-30"]
abi-7-31 = ["fuser/abi-7-31"]
abi-7-36 = ["fuser/abi-7-36"]
abi-7-40 = ["fuser/abi-7-40"]
default = []
experimental = [
    "async-trait",
    "tokio",
    "fuser/experimental",
]
libfuse = ["fuser/libfuse"]
libfuse2 = [
    "libfuse",
    "fuser/libfuse2",
]
libfuse3 = [
    "libfuse",
    "fuser/libfuse3",
]
macfuse-4-compat = ["fuser/macfuse-4-compat"]
macos-api = []
macos-no-mount = ["fuser/macos-no-mount"]
serializable = [
    "serde",
    "fuser/serializable",
]

[lib]
name = "confuse"
path = "src/lib.rs"

[[example]]
name = "memfs"
path = "examples/memfs/main.rs"

[[test]]
name = "api_surface"
path = "tests/api_surface.rs"

[[test]]
name = "macos_api_windows"
path = "tests/macos_api_windows.rs"

[dependencies.async-trait]
version = "0.1"
optional = true

[dependencies.bitflags]
version = "2.9"

[dependencies.libc]
version = "0.2"

[dependencies.serde]
version = "1.0.102"
features = [
    "std",
    "derive",
]
optional = true

[dependencies.tokio]
version = "1.48.0"
features = [
    "rt",
    "rt-multi-thread",
]
optional = true

[target."cfg(not(windows))".dependencies.fuser]
version = "0.17"

[target."cfg(windows)".dependencies.dokan]
version = "0.3"

[target."cfg(windows)".dependencies.dokan-sys]
version = "0.3"

[target."cfg(windows)".dependencies.rustix]
version = "1"
features = ["net"]

[target."cfg(windows)".dependencies.widestring]
version = "0.4"

[target."cfg(windows)".dependencies.winapi]
version = "0.3"
features = [
    "consoleapi",
    "handleapi",
    "processthreadsapi",
    "securitybaseapi",
    "winbase",
    "wincon",
    "winnt",
]