2022-05-05 21:50:22 +10:00
|
|
|
[package]
|
2022-05-07 19:19:58 +10:00
|
|
|
name = "muda"
|
2022-05-05 21:50:22 +10:00
|
|
|
version = "0.0.0"
|
2022-05-09 03:36:39 +10:00
|
|
|
description = "Menu Utilities for Desktop Applications"
|
2022-05-05 21:50:22 +10:00
|
|
|
edition = "2021"
|
2022-05-07 09:02:52 +10:00
|
|
|
keywords = ["windowing", "menu"]
|
|
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
readme = "README.md"
|
2022-05-07 19:19:58 +10:00
|
|
|
repository = "https://github.com/amrbashir/muda"
|
|
|
|
documentation = "https://docs.rs/muda"
|
2022-05-07 09:02:52 +10:00
|
|
|
categories = ["gui"]
|
2022-05-05 21:50:22 +10:00
|
|
|
|
2022-05-07 00:25:45 +10:00
|
|
|
[dependencies]
|
|
|
|
crossbeam-channel = "0.5"
|
2022-07-20 22:34:09 +10:00
|
|
|
keyboard-types = "0.6"
|
2022-11-24 03:29:52 +11:00
|
|
|
once_cell = "1"
|
|
|
|
thiserror = "1.0.37"
|
2022-05-07 00:25:45 +10:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
|
2022-11-24 03:29:52 +11:00
|
|
|
version = "0.42"
|
2022-05-07 00:25:45 +10:00
|
|
|
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-07 03:37:49 +10:00
|
|
|
"Win32_UI_Shell",
|
2022-06-10 22:09:56 +10:00
|
|
|
"Win32_Globalization",
|
2022-11-24 03:29:52 +11:00
|
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
2022-05-07 00:25:45 +10:00
|
|
|
]
|
2022-05-05 21:50:22 +10:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2022-07-20 22:34:09 +10:00
|
|
|
gdk = "0.15"
|
2022-11-24 03:29:52 +11:00
|
|
|
gtk = { version = "0.15", features = ["v3_22"] }
|
2022-06-10 22:09:56 +10:00
|
|
|
libxdo = "0.6.0"
|
2022-05-05 21:50:22 +10:00
|
|
|
|
2022-05-07 23:19:42 +10:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
|
|
cocoa = "0.24"
|
|
|
|
objc = "0.2"
|
|
|
|
|
2022-05-05 21:50:22 +10:00
|
|
|
[dev-dependencies]
|
2022-11-24 03:29:52 +11:00
|
|
|
winit = "0.27"
|
2022-06-10 22:09:56 +10:00
|
|
|
tao = { git = "https://github.com/tauri-apps/tao", branch = "muda" }
|