2022-05-05 21:50:22 +10:00
|
|
|
[package]
|
|
|
|
name = "menu-rs"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
2022-05-07 00:25:45 +10:00
|
|
|
[dependencies]
|
|
|
|
crossbeam-channel = "0.5"
|
|
|
|
once_cell = "1.10"
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
|
|
|
|
version = "0.34"
|
|
|
|
features = [
|
2022-05-05 21:50:22 +10:00
|
|
|
"Win32_UI_WindowsAndMessaging",
|
|
|
|
"Win32_Foundation",
|
2022-05-07 00:25:45 +10:00
|
|
|
"Win32_Graphics_Gdi",
|
|
|
|
]
|
2022-05-05 21:50:22 +10:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2022-05-07 00:25:45 +10:00
|
|
|
parking_lot = "0.12"
|
2022-05-05 21:50:22 +10:00
|
|
|
gtk = "0.15"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
winit = "0.26"
|
|
|
|
tao = { path = "../tao", default-features = false }
|