5bee7092d3
- Add insta dev-dependency for visual regression testing - Create lib.rs to expose modules for integration tests - Add snapshot tests for progress_bar, topbar, library, help modal - Add unit tests for LibraryState navigation - Move all tests to tests/ directory (proper Rust convention) - Make build.rs skip proto compilation when protoc unavailable - Add docs/testing-possible-solutions.md with testing strategies
23 lines
447 B
TOML
23 lines
447 B
TOML
[package]
|
|
name = "ui-agregator"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
ratatui = "0.29"
|
|
crossterm = "0.28"
|
|
color-eyre = "0.6"
|
|
nix = { version = "0.29", features = ["fs"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
|
|
tonic = "0.12"
|
|
prost = "0.13"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time"] }
|
|
|
|
[dev-dependencies]
|
|
insta = "1.40.0"
|
|
|
|
[build-dependencies]
|
|
tonic-build = "0.12"
|