mirror of
https://github.com/italicsjenga/muda.git
synced 2024-12-23 12:01:31 +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
|
26
Cargo.toml
26
Cargo.toml
|
@ -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,23 +16,23 @@ 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",
|
||||||
"Win32_Foundation",
|
"Win32_Foundation",
|
||||||
"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