Files
logViewer/Cargo.toml
dailz 2260d60302 feat(core): add disk index cache infrastructure
Add xxhash-rust and bincode workspace dependencies for fast hashing and serialization. Implement cache_util for cache directory/path resolution with versioning, and IndexCache for saving/loading line indices to disk with file-hash validation.

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
2026-04-14 09:06:36 +08:00

30 lines
655 B
TOML

[workspace]
resolver = "2"
members = ["crates/core", "crates/gui", "crates/tui", "crates/bench"]
default-members = ["crates/core"]
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
parking_lot = "0.12"
crossbeam-channel = "0.5"
notify = "8"
regex = "1"
memchr = "2"
memmap2 = "0.9"
toml = "0.8"
directories = "6"
insta = "1"
anyhow = "1"
egui = "0.34"
eframe = "0.34"
ratatui = "0.30"
crossterm = "0.29"
clap = { version = "4", features = ["derive"] }
log-viewer-core = { path = "crates/core" }
textwrap = "0.16"
tempfile = "3"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
bincode = "1"