2025-09-03 13:58:52 +09:00
|
|
|
[package]
|
|
|
|
|
name = "nyash-egui-plugin"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[lib]
|
2025-09-13 15:37:58 +09:00
|
|
|
crate-type = ["cdylib", "staticlib"]
|
2025-09-03 13:58:52 +09:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
once_cell = "1.21"
|
|
|
|
|
crossbeam-channel = "0.5"
|
|
|
|
|
cfg-if = "1.0"
|
2025-09-06 16:18:46 +09:00
|
|
|
# Optional GUI crates (cross-platform when feature=with-egui)
|
|
|
|
|
eframe = { version = "0.27", optional = true }
|
|
|
|
|
egui = { version = "0.27", optional = true }
|
2025-09-03 13:58:52 +09:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
with-egui = ["eframe", "egui"]
|