Skip to content

Commit

Permalink
Apply Version Updates From Current Changes (#27)
Browse files Browse the repository at this point in the history
Co-authored-by: amrbashir <[email protected]>
  • Loading branch information
github-actions[bot] and amrbashir authored Dec 6, 2022
1 parent cf8d886 commit b00c9e2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 18 deletions.
5 changes: 0 additions & 5 deletions .changes/initial-release.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
[package]
name = "muda"
version = "0.0.0"
version = "0.1.0"
description = "Menu Utilities for Desktop Applications"
edition = "2021"
keywords = ["windowing", "menu"]
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"]
categories = [ "gui" ]

[dependencies]
crossbeam-channel = "0.5"
keyboard-types = "0.6"
once_cell = "1"
thiserror = "1.0.37"

[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
[target."cfg(target_os = \"windows\")".dependencies.windows-sys]
version = "0.42"
features = [
"Win32_UI_WindowsAndMessaging",
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_UI_Shell",
"Win32_Globalization",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_WindowsAndMessaging",
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_UI_Shell",
"Win32_Globalization",
"Win32_UI_Input_KeyboardAndMouse"
]

[target.'cfg(target_os = "linux")'.dependencies]
[target."cfg(target_os = \"linux\")".dependencies]
gdk = "0.15"
gtk = { version = "0.15", features = ["v3_22"] }
gtk = { version = "0.15", features = [ "v3_22" ] }
libxdo = "0.6.0"

[target.'cfg(target_os = "macos")'.dependencies]
[target."cfg(target_os = \"macos\")".dependencies]
cocoa = "0.24"
objc = "0.2"

Expand Down

0 comments on commit b00c9e2

Please sign in to comment.