2026-07-11 18:13:03 +03:00
|
|
|
[package]
|
|
|
|
|
name = "hcie-iced-gui"
|
2026-07-21 04:25:23 +03:00
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
2026-07-11 18:13:03 +03:00
|
|
|
|
2026-07-15 03:34:13 +03:00
|
|
|
[lib]
|
|
|
|
|
name = "hcie_iced_gui"
|
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
2026-07-11 18:13:03 +03:00
|
|
|
[features]
|
|
|
|
|
default = ["tablet-evdev"]
|
|
|
|
|
tablet-evdev = ["dep:evdev"]
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "hcie-iced"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-07-21 04:25:23 +03:00
|
|
|
hcie-build-info = { workspace = true }
|
2026-07-11 18:13:03 +03:00
|
|
|
hcie-engine-api = { path = "../../../hcie-engine-api" }
|
2026-07-21 06:07:12 +03:00
|
|
|
hcie-watercolor-brushes = { path = "../hcie-watercolor-brushes" }
|
2026-07-23 02:28:49 +03:00
|
|
|
hcie-dry-media-brushes = { path = "../hcie-dry-media-brushes" }
|
|
|
|
|
hcie-ink-brushes = { path = "../hcie-ink-brushes" }
|
|
|
|
|
hcie-paint-brushes = { path = "../hcie-paint-brushes" }
|
|
|
|
|
hcie-digital-brushes = { path = "../hcie-digital-brushes" }
|
2026-07-11 18:13:03 +03:00
|
|
|
iced-panel-adapter = { path = "../iced-panel-adapter" }
|
|
|
|
|
iced = { workspace = true }
|
|
|
|
|
env_logger = { workspace = true }
|
|
|
|
|
log = { workspace = true }
|
|
|
|
|
image = { workspace = true }
|
2026-07-13 06:40:14 +03:00
|
|
|
serde = { workspace = true }
|
2026-07-11 18:13:03 +03:00
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
rfd = { workspace = true }
|
|
|
|
|
arboard = { workspace = true }
|
2026-07-12 02:05:31 +03:00
|
|
|
bytes = "1.12"
|
2026-07-12 03:19:09 +03:00
|
|
|
bytemuck = { version = "1", features = ["derive"] }
|
2026-07-11 18:13:03 +03:00
|
|
|
evdev = { version = "0.12", optional = true }
|
2026-07-13 06:40:14 +03:00
|
|
|
dirs = "5.0"
|
2026-07-15 16:31:25 +03:00
|
|
|
reqwest = { version = "0.12", features = ["json", "stream"] }
|
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
|
futures-util = "0.3"
|
2026-07-15 17:42:05 +03:00
|
|
|
zip = { workspace = true }
|
2026-07-20 01:43:22 +03:00
|
|
|
usvg = { workspace = true }
|