7dfe05afb9
- SearchOps with moka LRU cache for results and inode mapping - 256 char query length limit with truncation - Safe symlink targets with path normalization - Integrates with filesystem.rs for lookup/getattr/readdir/readlink Ultraworked with [Sisyphus](https://github.com/code-yeongyu/claude-agent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
20 lines
459 B
TOML
20 lines
459 B
TOML
[package]
|
|
name = "musicfs-fuse"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
musicfs-core = { path = "../musicfs-core" }
|
|
musicfs-cache = { path = "../musicfs-cache" }
|
|
musicfs-cas = { path = "../musicfs-cas" }
|
|
musicfs-search = { path = "../musicfs-search" }
|
|
fuser.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
moka.workspace = true
|
|
parking_lot.workspace = true
|
|
libc = "0.2"
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|