b49106dc1d
feat: Refactor Iced panel adapter and introduce build metadata management - Updated Cargo.toml files across multiple crates to use workspace versioning. - Enhanced the `iced-panel-adapter` to include a new `plain_slider` module and updated widget rendering to support theme colors. - Added new theme color utilities for recessed and elevated surfaces in `iced-panel-adapter`. - Introduced a new `hcie-build-info` crate to manage build metadata, including a build ID system. - Created a build script to synchronize build IDs across the workspace. - Added a Makefile for simplified build commands for the Iced application. - Implemented regression tests for vector shape creation history in the engine API. - Added a new script for managing Cargo commands with synchronized build ID increments. - Updated line count report to reflect recent changes in codebase. - Created a visual plan document for future improvements in the Iced history and panel systems.
39 lines
967 B
TOML
39 lines
967 B
TOML
[package]
|
|
name = "hcie-iced-gui"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[lib]
|
|
name = "hcie_iced_gui"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = ["tablet-evdev"]
|
|
tablet-evdev = ["dep:evdev"]
|
|
|
|
[[bin]]
|
|
name = "hcie-iced"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
hcie-build-info = { workspace = true }
|
|
hcie-engine-api = { path = "../../../hcie-engine-api" }
|
|
iced-panel-adapter = { path = "../iced-panel-adapter" }
|
|
iced = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
log = { workspace = true }
|
|
image = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
rfd = { workspace = true }
|
|
arboard = { workspace = true }
|
|
bytes = "1.12"
|
|
bytemuck = { version = "1", features = ["derive"] }
|
|
evdev = { version = "0.12", optional = true }
|
|
dirs = "5.0"
|
|
reqwest = { version = "0.12", features = ["json", "stream"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
futures-util = "0.3"
|
|
zip = { workspace = true }
|
|
usvg = { workspace = true }
|