mirror of
https://github.com/italicsjenga/muda.git
synced 2024-12-23 12:01:31 +11:00
bump dependency versions
This commit is contained in:
parent
f3b7d54224
commit
80f8bcfce4
20
Cargo.toml
20
Cargo.toml
|
@ -3,18 +3,18 @@ name = "muda"
|
||||||
version = "0.9.1"
|
version = "0.9.1"
|
||||||
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"]
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = [ "libxdo" ]
|
default = ["libxdo"]
|
||||||
libxdo = [ "dep:libxdo" ]
|
libxdo = ["dep:libxdo"]
|
||||||
common-controls-v6 = [ ]
|
common-controls-v6 = []
|
||||||
serde = [ "dep:serde" ]
|
serde = ["dep:serde"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
crossbeam-channel = "0.5"
|
crossbeam-channel = "0.5"
|
||||||
|
@ -36,13 +36,13 @@ features = [
|
||||||
"Win32_UI_Accessibility",
|
"Win32_UI_Accessibility",
|
||||||
"Win32_UI_HiDpi",
|
"Win32_UI_HiDpi",
|
||||||
"Win32_System_LibraryLoader",
|
"Win32_System_LibraryLoader",
|
||||||
"Win32_UI_Controls"
|
"Win32_UI_Controls",
|
||||||
]
|
]
|
||||||
|
|
||||||
[target."cfg(target_os = \"linux\")".dependencies]
|
[target."cfg(target_os = \"linux\")".dependencies]
|
||||||
gtk = "0.16"
|
gtk = "0.18"
|
||||||
gdk = "0.16"
|
gdk = "0.18"
|
||||||
gdk-pixbuf = "0.16"
|
gdk-pixbuf = "0.18"
|
||||||
libxdo = { version = "0.6.0", optional = true }
|
libxdo = { version = "0.6.0", optional = true }
|
||||||
|
|
||||||
[target."cfg(target_os = \"macos\")".dependencies]
|
[target."cfg(target_os = \"macos\")".dependencies]
|
||||||
|
|
Loading…
Reference in a new issue