Add unit tests for core components
Some checks failed
Makefile CI / Release - Linux-x86_64 (push) Has been cancelled
Makefile CI / Release - Windows-x86_64 (push) Has been cancelled

This commit is contained in:
2025-04-10 13:44:35 -04:00
parent 2bb5ce0327
commit c9f8325da9
4 changed files with 348 additions and 30 deletions

View File

@@ -5,6 +5,14 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "shift_tool"
path = "src/main.rs"
[lib]
name = "vpc_shift_tool"
path = "src/lib.rs"
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
eframe = "0.30.0"
@@ -21,3 +29,6 @@ chrono = "0.4.40"
logging = []
default = ["logging"]
[dev-dependencies]
mock-it = "0.9.0"