c826bcf35f
- Implement three-region splice logic (header, audio, boundary) - Add passthrough mode for files without format_layout - Add estimate_virtual_size() for getattr - Create OverlayError enum with proper error conversions - Add 8 comprehensive unit tests - All tests pass, LSP diagnostics clean
26 lines
628 B
TOML
26 lines
628 B
TOML
[package]
|
|
name = "musicfs-cache"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
musicfs-core = { path = "../musicfs-core" }
|
|
musicfs-cas = { path = "../musicfs-cas" }
|
|
musicfs-metadata = { path = "../musicfs-metadata" }
|
|
bytes.workspace = true
|
|
rusqlite = { workspace = true, features = ["bundled"] }
|
|
sled.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
thiserror.workspace = true
|
|
serde.workspace = true
|
|
rmp-serde.workspace = true
|
|
serde_json.workspace = true
|
|
image.workspace = true
|
|
lofty = "0.24"
|
|
parking_lot.workspace = true
|
|
chrono.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|