muda/Cargo.toml

39 lines
945 B
TOML
Raw Normal View History

2022-05-05 13:50:22 +02:00
[package]
2022-05-07 11:19:58 +02:00
name = "muda"
2022-05-05 13:50:22 +02:00
version = "0.0.0"
2022-05-08 19:36:39 +02:00
description = "Menu Utilities for Desktop Applications"
2022-05-05 13:50:22 +02:00
edition = "2021"
2022-05-07 01:02:52 +02:00
keywords = ["windowing", "menu"]
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"
2022-05-07 01:02:52 +02:00
categories = ["gui"]
2022-05-05 13:50:22 +02:00
[dependencies]
crossbeam-channel = "0.5"
once_cell = "1.10"
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.34"
features = [
2022-05-05 13:50:22 +02:00
"Win32_UI_WindowsAndMessaging",
"Win32_Foundation",
"Win32_Graphics_Gdi",
2022-05-06 19:37:49 +02:00
"Win32_UI_Shell",
"Win32_Globalization",
"Win32_UI_Input_KeyboardAndMouse"
]
2022-05-05 13:50:22 +02:00
[target.'cfg(target_os = "linux")'.dependencies]
gtk = "0.15"
libxdo = "0.6.0"
2022-05-05 13:50:22 +02:00
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.24"
objc = "0.2"
2022-05-05 13:50:22 +02:00
[dev-dependencies]
winit = { git = "https://github.com/rust-windowing/winit" }
tao = { git = "https://github.com/tauri-apps/tao", branch = "muda" }