ffbb238633
- Add musicfs-cas crate: CasStore, ChunkHash, FileReader, ChunkManifest - Add LruEviction policy to musicfs-cache for cache size management - Integrate FileReader into FUSE filesystem for actual file reads - Use xxHash64 for content hashing, sled for index, msgpack serialization - Default cache path: ~/.cache/musicfs/chunks/ with 256 subdirs sharding - 20 new tests (14 CAS unit + 3 integration + 3 eviction), 54 total
14 lines
314 B
TOML
14 lines
314 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" }
|
|
fuser.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
libc = "0.2"
|