Files
hcie-rust-v3.05/hcie-io/Cargo.toml
Your Name 513efcdcff
mandatory-regression-gate / deterministic-tests (push) Has been cancelled
mandatory-regression-gate / protected-performance-path (push) Has been cancelled
Refactor dependencies and improve test runner diagnostics
- 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.
2026-07-23 16:34:05 +03:00

38 lines
1.0 KiB
TOML

[package]
name = "hcie-io"
version = "0.1.0"
edition = "2021"
[dependencies]
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "webp", "bmp", "gif", "tiff", "ico", "pnm", "qoi", "ff", "hdr", "dds", "avif", "tga", "exr"] }
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
rand = "0.8"
resvg = "0.43"
usvg = "0.43"
tiny-skia = "0.11"
bincode = "1.3"
hcie-blend = { path = "../hcie-blend" }
hcie-protocol = { path = "../hcie-protocol" }
hcie-psd = { path = "../hcie-psd", package = "psd" }
hcie-composite = { path = "../hcie-composite" }
hcie-fx = { path = "../hcie-fx" }
hcie-kra = { path = "../hcie-kra" }
[lib]
crate-type = ["staticlib", "rlib"]
[dev-dependencies]
rstest = "0.23"
proptest = "1.5"
approx = "0.5"
egui = { workspace = true }
eframe = { workspace = true }
rfd = "0.15"
hcie-psd-saver = { path = "../hcie-psd-saver" }
zip = { version = "2.2", default-features = false, features = ["deflate"] }
rayon = "1.10"