32c96701c8
- Add CdcChunker using FastCDC v3 (16KB/64KB/256KB chunks) - Add DeltaDetector with scan_origin() returning ScannedFile (no FileId assignment) - Add OriginWatcher with inotify and 200ms debounce using tokio::spawn - Fix LocalOrigin::read() to loop until all bytes read - Add read_full() method to Origin trait - Add mtime field to ChunkManifest - Update ContentFetcher to use CDC chunking - Update bandwidth reduction test to assert >90% (NFR-6.4) Tests: 71 pass (+11 new)
24 lines
569 B
TOML
24 lines
569 B
TOML
[package]
|
|
name = "musicfs-cas"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
musicfs-core = { path = "../musicfs-core" }
|
|
musicfs-origins = { path = "../musicfs-origins" }
|
|
musicfs-sync = { path = "../musicfs-sync" }
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
serde.workspace = true
|
|
sled.workspace = true
|
|
xxhash-rust.workspace = true
|
|
bytes.workspace = true
|
|
rmp-serde.workspace = true
|
|
hex.workspace = true
|
|
dirs.workspace = true
|
|
thiserror.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|
|
musicfs-cache = { path = "../musicfs-cache" }
|