nfs3_server 0.5.0

A Rust NFSv3 Server implementation
Documentation
[dependencies.anyhow]
version = "1.0.98"

[dependencies.filetime]
version = "0.2.25"

[dependencies.nfs3_types]
version = "0.3.3"

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

[dependencies.tracing]
version = "0.1.41"

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

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

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

[features]
__test_reexports = []
memfs = []

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

[lints.clippy]
enum_glob_use = "deny"
future_not_send = "allow"
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

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

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