mirror of
https://github.com/italicsjenga/muda.git
synced 2025-01-11 12:21:30 +11:00
Apply Version Updates From Current Changes (#27)
Co-authored-by: amrbashir <amrbashir@users.noreply.github.com>
This commit is contained in:
parent
cf8d88613f
commit
b00c9e283b
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
"muda": "minor"
|
|
||||||
---
|
|
||||||
|
|
||||||
Initial Release.
|
|
6
CHANGELOG.md
Normal file
6
CHANGELOG.md
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
## \[0.1.0]
|
||||||
|
|
||||||
|
- Initial Release.
|
||||||
|
- [0309d10](https://www.github.com/tauri-apps/muda/commit/0309d101b16663ce67b518f8aa1d2c4af0de6dee) chore: prepare for first release on 2022-12-05
|
10
Cargo.toml
10
Cargo.toml
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "muda"
|
name = "muda"
|
||||||
version = "0.0.0"
|
version = "0.1.0"
|
||||||
description = "Menu Utilities for Desktop Applications"
|
description = "Menu Utilities for Desktop Applications"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
keywords = [ "windowing", "menu" ]
|
keywords = [ "windowing", "menu" ]
|
||||||
|
@ -16,7 +16,7 @@ keyboard-types = "0.6"
|
||||||
once_cell = "1"
|
once_cell = "1"
|
||||||
thiserror = "1.0.37"
|
thiserror = "1.0.37"
|
||||||
|
|
||||||
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
|
[target."cfg(target_os = \"windows\")".dependencies.windows-sys]
|
||||||
version = "0.42"
|
version = "0.42"
|
||||||
features = [
|
features = [
|
||||||
"Win32_UI_WindowsAndMessaging",
|
"Win32_UI_WindowsAndMessaging",
|
||||||
|
@ -24,15 +24,15 @@ features = [
|
||||||
"Win32_Graphics_Gdi",
|
"Win32_Graphics_Gdi",
|
||||||
"Win32_UI_Shell",
|
"Win32_UI_Shell",
|
||||||
"Win32_Globalization",
|
"Win32_Globalization",
|
||||||
"Win32_UI_Input_KeyboardAndMouse",
|
"Win32_UI_Input_KeyboardAndMouse"
|
||||||
]
|
]
|
||||||
|
|
||||||
[target.'cfg(target_os = "linux")'.dependencies]
|
[target."cfg(target_os = \"linux\")".dependencies]
|
||||||
gdk = "0.15"
|
gdk = "0.15"
|
||||||
gtk = { version = "0.15", features = [ "v3_22" ] }
|
gtk = { version = "0.15", features = [ "v3_22" ] }
|
||||||
libxdo = "0.6.0"
|
libxdo = "0.6.0"
|
||||||
|
|
||||||
[target.'cfg(target_os = "macos")'.dependencies]
|
[target."cfg(target_os = \"macos\")".dependencies]
|
||||||
cocoa = "0.24"
|
cocoa = "0.24"
|
||||||
objc = "0.2"
|
objc = "0.2"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue