[package]
edition = "2024"
rust-version = "1.88"
name = "embednfs"
version = "0.4.1"
build = false
exclude = ["CLAUDE.md"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embeddable NFSv4.1 server library"
readme = "README.md"
keywords = [
"nfs",
"nfsv4",
"filesystem",
"server",
]
categories = [
"network-programming",
"filesystem",
]
license = "MIT"
repository = "https://github.com/PeronGH/embednfs"
[lib]
name = "embednfs"
path = "src/lib.rs"
[[test]]
name = "compound_session"
path = "tests/compound_session.rs"
[[test]]
name = "create_special"
path = "tests/create_special.rs"
[[test]]
name = "directory"
path = "tests/directory.rs"
[[test]]
name = "file_ops"
path = "tests/file_ops.rs"
[[test]]
name = "filehandle"
path = "tests/filehandle.rs"
[[test]]
name = "lock_ops"
path = "tests/lock_ops.rs"
[[test]]
name = "nfs4j_smoke"
path = "tests/nfs4j_smoke.rs"
[[test]]
name = "nfs4j_stress"
path = "tests/nfs4j_stress.rs"
[[test]]
name = "nfs_rs_smoke"
path = "tests/nfs_rs_smoke.rs"
[[test]]
name = "transport_fragmentation"
path = "tests/transport_fragmentation.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.bytes]
version = "1.11.1"
[dependencies.dashmap]
version = "6.1.0"
[dependencies.embednfs-proto]
version = "0.4.1"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.50.0"
features = ["full"]
[dependencies.tracing]
version = "0.1.44"
[dev-dependencies]
[lints.clippy]
allow_attributes = "warn"
allow_attributes_without_reason = "warn"
await_holding_lock = "warn"
await_holding_refcell_ref = "warn"
expect_used = "warn"
indexing_slicing = "warn"
missing_safety_doc = "warn"
multiple_unsafe_ops_per_block = "warn"
panic = "warn"
panic_in_result_fn = "warn"
todo = "warn"
undocumented_unsafe_blocks = "warn"
unimplemented = "warn"
unnecessary_safety_comment = "warn"
unreachable = "warn"
unused_async = "warn"
unwrap_used = "warn"
[lints.rust]
unfulfilled_lint_expectations = "warn"
unreachable_pub = "warn"
unused_results = "warn"