mirror of
https://github.com/italicsjenga/muda.git
synced 2024-12-24 04:11:30 +11:00
chore(deps): bump gtk version 0.15 -> 0.16 (#38)
* chore(deps): bump gtk version 0.15 -> 0.16 * fix feature flags
This commit is contained in:
parent
4f2ec9ec09
commit
fb3d0aa303
5
.changes/gtk-0.16.md
Normal file
5
.changes/gtk-0.16.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
"muda": "minor"
|
||||||
|
---
|
||||||
|
|
||||||
|
Bump gtk version: 0.15 -> 0.16
|
12
Cargo.toml
12
Cargo.toml
|
@ -3,12 +3,12 @@ name = "muda"
|
||||||
version = "0.3.0"
|
version = "0.3.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"
|
||||||
|
@ -25,13 +25,13 @@ features = [
|
||||||
"Win32_UI_Shell",
|
"Win32_UI_Shell",
|
||||||
"Win32_Globalization",
|
"Win32_Globalization",
|
||||||
"Win32_UI_Input_KeyboardAndMouse",
|
"Win32_UI_Input_KeyboardAndMouse",
|
||||||
"Win32_System_SystemServices"
|
"Win32_System_SystemServices",
|
||||||
]
|
]
|
||||||
|
|
||||||
[target."cfg(target_os = \"linux\")".dependencies]
|
[target."cfg(target_os = \"linux\")".dependencies]
|
||||||
gtk = { version = "0.15", features = [ "v3_22" ] }
|
gtk = "0.16"
|
||||||
gdk = { version = "0.15", features = [ "v3_22" ] }
|
gdk = "0.16"
|
||||||
gdk-pixbuf = { version = "0.15", features = [ "v2_36_8" ] }
|
gdk-pixbuf = "0.16"
|
||||||
libxdo = "0.6.0"
|
libxdo = "0.6.0"
|
||||||
|
|
||||||
[target."cfg(target_os = \"macos\")".dependencies]
|
[target."cfg(target_os = \"macos\")".dependencies]
|
||||||
|
|
Loading…
Reference in a new issue