muda/Cargo.toml
Yu-Wei Wu b2f1a3ab4f
Add macos port
Some configurations haven't implemented yet or just seem not possible.

Co-authored-by: Jason Tsai <jason@pews.dev>
2022-05-07 21:28:11 +08:00

39 lines
872 B
TOML

[package]
name = "muda"
version = "0.0.0"
description = "Menu utilities for Desktop Applications"
edition = "2021"
keywords = ["windowing", "menu"]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/amrbashir/muda"
documentation = "https://docs.rs/muda"
categories = ["gui"]
[dependencies]
crossbeam-channel = "0.5"
once_cell = "1.10"
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.34"
features = [
"Win32_UI_WindowsAndMessaging",
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_UI_Shell",
"Win32_Globalization"
]
[target.'cfg(target_os = "linux")'.dependencies]
parking_lot = "0.12"
gtk = "0.15"
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.24"
objc = "0.2"
#core-graphics = "0.22"
[dev-dependencies]
winit = "0.26"
tao = { path = "../tao", default-features = false }