513efcdcff
- Updated `Cargo.toml` files across multiple crates to replace local `egui` and `eframe` dependencies with workspace references, ensuring consistent platform support. - Enhanced `run_all_tests.bat` and `run_all_tests.sh` scripts to capture and report names of failed and skipped crates, improving test diagnostics. - Fixed duplicate keys in `hcie-text/Cargo.toml` and ensured proper feature activation for Linux builds in affected crates. - Added a new repair plan document outlining steps to address failing crates and improve overall test execution reliability.
22 lines
457 B
TOML
22 lines
457 B
TOML
[package]
|
|
name = "hcie-vector"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
hcie-protocol = { path = "../hcie-protocol" }
|
|
hcie-blend = { path = "../hcie-blend" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
bincode = "1.3"
|
|
usvg = { workspace = true }
|
|
|
|
[lib]
|
|
crate-type = ["staticlib", "rlib"]
|
|
|
|
[dev-dependencies]
|
|
rstest = "0.23"
|
|
proptest = "1.5"
|
|
approx = "0.5"
|
|
egui = { workspace = true }
|
|
eframe = { workspace = true }
|