mirror of
https://github.com/italicsjenga/muda.git
synced 2024-12-23 20:11:29 +11:00
20 lines
423 B
TOML
20 lines
423 B
TOML
[package]
|
|
name = "menu-rs"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows-sys = { version = "0.34", features = [
|
|
"Win32_UI_WindowsAndMessaging",
|
|
"Win32_Foundation",
|
|
"Win32_Graphics_Gdi"
|
|
] }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
parking_lot = "0.12.0"
|
|
gtk = "0.15"
|
|
|
|
[dev-dependencies]
|
|
winit = "0.26"
|
|
tao = { path = "../tao", default-features = false }
|