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.
23 lines
576 B
TOML
23 lines
576 B
TOML
[package]
|
|
name = "egui-panel-ai-script"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
hcie-engine-api = { path = "../../../hcie-engine-api" }
|
|
egui-panel-adapter = { path = "../egui-panel-adapter" }
|
|
egui-panel-script = { path = "../egui-panel-script" }
|
|
egui = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
log = { workspace = true }
|
|
|
|
[lib]
|
|
crate-type = ["rlib"]
|
|
|
|
[dev-dependencies]
|
|
rstest.workspace = true
|
|
proptest.workspace = true
|
|
approx.workspace = true
|