2022-05-05 13:50:22 +02:00
|
|
|
[package]
|
2022-05-07 11:19:58 +02:00
|
|
|
name = "muda"
|
2023-02-28 18:22:59 +02:00
|
|
|
version = "0.4.3"
|
2022-05-08 19:36:39 +02:00
|
|
|
description = "Menu Utilities for Desktop Applications"
|
2022-05-05 13:50:22 +02:00
|
|
|
edition = "2021"
|
2023-01-26 15:23:51 +02:00
|
|
|
keywords = [ "windowing", "menu" ]
|
2022-05-07 01:02:52 +02:00
|
|
|
license = "Apache-2.0 OR MIT"
|
|
|
|
readme = "README.md"
|
2022-05-07 11:19:58 +02:00
|
|
|
repository = "https://github.com/amrbashir/muda"
|
|
|
|
documentation = "https://docs.rs/muda"
|
2023-01-26 15:23:51 +02:00
|
|
|
categories = [ "gui" ]
|
2022-05-05 13:50:22 +02:00
|
|
|
|
2022-05-06 16:25:45 +02:00
|
|
|
[dependencies]
|
|
|
|
crossbeam-channel = "0.5"
|
2022-07-20 20:34:09 +08:00
|
|
|
keyboard-types = "0.6"
|
2022-11-23 18:29:52 +02:00
|
|
|
once_cell = "1"
|
2022-12-30 14:23:40 +02:00
|
|
|
thiserror = "1"
|
2022-05-06 16:25:45 +02:00
|
|
|
|
2022-12-06 03:05:44 +02:00
|
|
|
[target."cfg(target_os = \"windows\")".dependencies.windows-sys]
|
2023-01-21 02:23:06 +02:00
|
|
|
version = "0.45"
|
2022-05-06 16:25:45 +02:00
|
|
|
features = [
|
2022-12-06 03:05:44 +02:00
|
|
|
"Win32_UI_WindowsAndMessaging",
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Graphics_Gdi",
|
|
|
|
"Win32_UI_Shell",
|
|
|
|
"Win32_Globalization",
|
2022-12-30 14:23:40 +02:00
|
|
|
"Win32_UI_Input_KeyboardAndMouse",
|
2023-01-26 15:23:51 +02:00
|
|
|
"Win32_System_SystemServices"
|
2022-05-06 16:25:45 +02:00
|
|
|
]
|
2022-05-05 13:50:22 +02:00
|
|
|
|
2022-12-06 03:05:44 +02:00
|
|
|
[target."cfg(target_os = \"linux\")".dependencies]
|
2023-01-26 15:16:53 +02:00
|
|
|
gtk = "0.16"
|
|
|
|
gdk = "0.16"
|
|
|
|
gdk-pixbuf = "0.16"
|
2022-06-10 14:09:56 +02:00
|
|
|
libxdo = "0.6.0"
|
2022-05-05 13:50:22 +02:00
|
|
|
|
2022-12-06 03:05:44 +02:00
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
2022-05-07 21:19:42 +08:00
|
|
|
cocoa = "0.24"
|
|
|
|
objc = "0.2"
|
2022-12-30 14:23:40 +02:00
|
|
|
png = "0.17"
|
2022-05-07 21:19:42 +08:00
|
|
|
|
2022-05-05 13:50:22 +02:00
|
|
|
[dev-dependencies]
|
2023-02-02 15:42:36 +02:00
|
|
|
winit = "0.28"
|
2022-06-10 14:09:56 +02:00
|
|
|
tao = { git = "https://github.com/tauri-apps/tao", branch = "muda" }
|
2022-12-30 14:23:40 +02:00
|
|
|
image = "0.24"
|