Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
olback committed Oct 18, 2023
1 parent eb899ef commit 9f30edb
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 19 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "tray-item"
version = "0.8.0"
version = "0.9.0"
authors = ["Edwin Svensson <[email protected]>"]
edition = "2018"
edition = "2021"
description = "Super simple API to make tray icons/menus on Windows, Mac & Linux"
homepage = "https://github.com/olback/tray-item-rs"
repository = "https://github.com/olback/tray-item-rs"
Expand All @@ -17,8 +17,8 @@ libappindicator = ["dep:libappindicator", "dep:gtk"]

[dependencies]
ksni = { version = "0.2.0", optional = true }
libappindicator = { version = "0.7", optional = true } # Tray icon
gtk = { version = "0.15", optional = true }
libappindicator = { version = "0.9", optional = true } # Tray icon
gtk = { version = "0.18", optional = true }

[target.'cfg(target_os="windows")'.dependencies]
padlock = "0.2"
Expand All @@ -30,13 +30,13 @@ features = [
"Win32_Graphics_Gdi",
"Win32_System_LibraryLoader",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging"
"Win32_UI_WindowsAndMessaging",
]

[target.'cfg(target_os="macos")'.dependencies]
cocoa = "0.24"
cocoa = "0.25"
objc = "0.2"
core-graphics = "0.22"
core-graphics = "0.23"
objc-foundation = "0.1"
objc_id = "0.1"
libc = "0.2"
Expand All @@ -47,4 +47,4 @@ opt-level = "z"
lto = true
incremental = false
codegen-units = 1
panic = "abort"
panic = "abort"
4 changes: 2 additions & 2 deletions examples/linux-embeded-icon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tray-item = { path="../../", features = [ "ksni" ] }
png = "0.16.8"
tray-item = { path = "../../", features = ["ksni"] }
png = "0.17"
12 changes: 6 additions & 6 deletions examples/linux-gresources/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
name = "linux-gresource-example"
version = "0.1.0"
edition = "2021"
build="build.rs"
build = "build.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tray-item = { path="../../", features = [ "libappindicator" ] }
gtk = "0.15"
gio = "0.15"
glib = "0.15"
tray-item = { path = "../../", features = ["libappindicator"] }
gtk = "0.18"
gio = "0.18"
glib = "0.18"

[build-dependencies]
gio = "0.15"
gio = "0.18"
5 changes: 2 additions & 3 deletions examples/linux-named-resource/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tray-item = { path="../../", features = [ "libappindicator" ] }
gtk = "0.15"

tray-item = { path = "../../", features = ["libappindicator"] }
gtk = "0.18"

0 comments on commit 9f30edb

Please sign in to comment.