2022-05-05 21:50:22 +10:00
|
|
|
[package]
|
2022-05-07 19:19:58 +10:00
|
|
|
name = "muda"
|
2023-03-28 06:12:52 +11:00
|
|
|
version = "0.4.5"
|
2022-05-09 03:36:39 +10:00
|
|
|
description = "Menu Utilities for Desktop Applications"
|
2022-05-05 21:50:22 +10:00
|
|
|
edition = "2021"
|
2023-01-27 00:23:51 +11:00
|
|
|
keywords = [ "windowing", "menu" ]
|
2022-05-07 09:02:52 +10:00
|
|
|
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"
|
2023-01-27 00:23:51 +11: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"
|
2022-12-30 23:23:40 +11:00
|
|
|
thiserror = "1"
|
2022-05-07 00:25:45 +10:00
|
|
|
|
2022-12-06 12:05:44 +11:00
|
|
|
[target."cfg(target_os = \"windows\")".dependencies.windows-sys]
|
2023-04-17 21:25:40 +10:00
|
|
|
version = "0.48"
|
2022-05-07 00:25:45 +10:00
|
|
|
features = [
|
2022-12-06 12:05:44 +11:00
|
|
|
"Win32_UI_WindowsAndMessaging",
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Graphics_Gdi",
|
|
|
|
"Win32_UI_Shell",
|
|
|
|
"Win32_Globalization",
|
2022-12-30 23:23:40 +11:00
|
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
2023-01-27 00:23:51 +11:00
|
|
|
"Win32_System_SystemServices"
|
2022-05-07 00:25:45 +10:00
|
|
|
]
|
2022-05-05 21:50:22 +10:00
|
|
|
|
2022-12-06 12:05:44 +11:00
|
|
|
[target."cfg(target_os = \"linux\")".dependencies]
|
2023-01-27 00:16:53 +11:00
|
|
|
gtk = "0.16"
|
|
|
|
gdk = "0.16"
|
|
|
|
gdk-pixbuf = "0.16"
|
2022-06-10 22:09:56 +10:00
|
|
|
libxdo = "0.6.0"
|
2022-05-05 21:50:22 +10:00
|
|
|
|
2022-12-06 12:05:44 +11:00
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
2022-05-07 23:19:42 +10:00
|
|
|
cocoa = "0.24"
|
|
|
|
objc = "0.2"
|
2022-12-30 23:23:40 +11:00
|
|
|
png = "0.17"
|
2022-05-07 23:19:42 +10:00
|
|
|
|
2022-05-05 21:50:22 +10:00
|
|
|
[dev-dependencies]
|
2023-02-03 00:42:36 +11:00
|
|
|
winit = "0.28"
|
2022-06-10 22:09:56 +10:00
|
|
|
tao = { git = "https://github.com/tauri-apps/tao", branch = "muda" }
|
2022-12-30 23:23:40 +11:00
|
|
|
image = "0.24"
|