Files
hcie-rust-v3.05/hcie-iced-app/crates/hcie-iced-gui/Cargo.toml
T
phantom 2fb47520b3 feat(svg-editor): implement interactive SVG node editor with parsing and editing capabilities
feat(debug-logger): add DebugSignalLogger plugin for event logging and inspection

feat(plugins): introduce built-in plugins module and integrate debug logger

feat(plugin-integration): create integration layer for mapping Iced Messages to CoreEvents

feat(plugin-registry): establish PluginRegistry for managing plugins and event dispatching
2026-07-20 01:43:22 +03:00

38 lines
913 B
TOML

[package]
name = "hcie-iced-gui"
version = "0.1.0"
edition = "2021"
[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-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 }