2022-05-05 13:50:22 +02:00
|
|
|
[package]
|
2022-05-07 11:19:58 +02:00
|
|
|
name = "muda"
|
2023-08-03 19:56:18 +03:00
|
|
|
version = "0.7.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-06-19 22:40:46 +03: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-06-19 22:40:46 +03:00
|
|
|
categories = [ "gui" ]
|
2022-05-05 13:50:22 +02:00
|
|
|
|
2023-06-19 20:59:10 +03:00
|
|
|
[features]
|
2023-06-19 22:40:46 +03:00
|
|
|
default = [ "libxdo" ]
|
|
|
|
libxdo = [ "dep:libxdo" ]
|
|
|
|
common-controls-v6 = [ "windows-sys/Win32_UI_Controls" ]
|
2023-07-27 14:56:01 +03:00
|
|
|
serde = [ "dep:serde" ]
|
2023-06-19 20:59:10 +03: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"
|
2023-07-27 14:56:01 +03:00
|
|
|
serde = { version = "1", optional = true }
|
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-04-17 13:25:40 +02:00
|
|
|
version = "0.48"
|
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-07-27 14:56:01 +03:00
|
|
|
"Win32_System_SystemServices",
|
|
|
|
"Win32_UI_HiDpi",
|
|
|
|
"Win32_System_LibraryLoader"
|
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"
|
2023-06-19 20:59:10 +03:00
|
|
|
libxdo = { version = "0.6.0", optional = true }
|
2022-05-05 13:50:22 +02:00
|
|
|
|
2022-12-06 03:05:44 +02:00
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
2023-06-20 17:39:24 +03:00
|
|
|
cocoa = "0.25"
|
2022-05-07 21:19:42 +08:00
|
|
|
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" }
|
2023-07-25 22:01:35 +03:00
|
|
|
wry = { git = "https://github.com/tauri-apps/wry", branch = "tao-v0.22" }
|
2022-12-30 14:23:40 +02:00
|
|
|
image = "0.24"
|