nfs3_server 0.10.2

A Rust NFSv3 Server implementation
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.88"
name = "nfs3_server"
version = "0.10.2"
authors = [
    "Vaiz",
    "Yucheng Low <ylow@xethub.com>",
]
build = false
include = [
    "src/**/*",
    "src/*",
    "Cargo.toml",
    "LICENSE",
    "README.md",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust NFSv3 Server implementation"
homepage = "https://github.com/Vaiz/nfs3"
readme = "README.md"
keywords = [
    "nfs",
    "nfs3",
]
categories = [
    "network-programming",
    "filesystem",
]
license = "BSD-3-Clause"
repository = "https://github.com/Vaiz/nfs3"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
__test_reexports = []
fs_util = ["dep:filetime"]
memfs = []

[lib]
name = "nfs3_server"
path = "src/lib.rs"
doctest = false

[dependencies.anyhow]
version = "1.0.98"

[dependencies.filetime]
version = "0.2.25"
optional = true

[dependencies.nfs3_types]
version = "0.5.0"

[dependencies.tokio]
version = "1.44.0"
features = [
    "net",
    "io-util",
    "sync",
    "fs",
    "rt",
    "macros",
    "time",
]
default-features = false

[dependencies.tracing]
version = "0.1.41"

[dev-dependencies.intaglio]
version = "1.10"

[dev-dependencies.tokio]
version = "1.44.0"
features = ["rt-multi-thread"]
default-features = false

[dev-dependencies.tracing-subscriber]
version = "0.3.20"
features = ["tracing-log"]

[lints.clippy]
collapsible_if = "allow"
enum_glob_use = "deny"
missing_errors_doc = "allow"
significant_drop_tightening = "allow"
unwrap_used = "deny"

[lints.clippy.nursery]
level = "deny"
priority = -1

[lints.clippy.pedantic]
level = "deny"
priority = -1