Apply Version Updates From Current Changes (#27)

Co-authored-by: amrbashir <amrbashir@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2022-12-06 03:05:44 +02:00 committed by GitHub
parent cf8d88613f
commit b00c9e283b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 18 deletions

View file

@ -1,5 +0,0 @@
---
"muda": "minor"
---
Initial Release.

6
CHANGELOG.md Normal file
View 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

View file

@ -1,14 +1,14 @@
[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" ]
license = "Apache-2.0 OR MIT" license = "Apache-2.0 OR MIT"
readme = "README.md" readme = "README.md"
repository = "https://github.com/amrbashir/muda" repository = "https://github.com/amrbashir/muda"
documentation = "https://docs.rs/muda" documentation = "https://docs.rs/muda"
categories = ["gui"] categories = [ "gui" ]
[dependencies] [dependencies]
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
@ -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"