Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
2e3s committed Oct 20, 2024
1 parent 8cfc14c commit 7ac7c9d
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 53 deletions.
63 changes: 25 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "awatcher"
path = "src/main.rs"

[build-dependencies]
image = { version = "0.25.1" }
image = { version = "0.25.4" }

[workspace]
members = ["watchers"]
Expand All @@ -21,19 +21,19 @@ members = ["watchers"]
version = "0.3.0"

[workspace.dependencies]
anyhow = "1.0.89"
log = { version = "0.4.21", features = ["std"] }
tokio = { version = "1.37.0" }
serde = "1.0.202"
anyhow = "1.0.90"
log = { version = "0.4.22", features = ["std"] }
tokio = { version = "1.40.0" }
serde = "1.0.210"

[dev-dependencies]
rstest = "0.23.0"
tempfile = "3.10.1"
tempfile = "3.13.0"

[dependencies]
watchers = { path = "./watchers", default-features = false }
chrono = "0.4.38"
toml = "0.8.13"
toml = "0.8.19"
clap = { version = "4.5.20", features = ["string"] }
fern = { version = "0.6.2", features = ["colored"] }
log = { workspace = true }
Expand All @@ -43,7 +43,7 @@ tokio = { workspace = true, features = ["rt", "macros", "signal"] }
ksni = {version = "0.2.2", optional = true}
aw-server = { git = "https://github.com/ActivityWatch/aw-server-rust", optional = true, rev = "bb787fd" }
aw-datastore = { git = "https://github.com/ActivityWatch/aw-server-rust", optional = true, rev = "bb787fd" }
open = { version = "5.1.3", optional = true }
open = { version = "5.3.0", optional = true }
serde = { workspace = true, optional = true }

[features]
Expand Down
12 changes: 6 additions & 6 deletions watchers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ path = "src/lib.rs"

[dev-dependencies]
rstest = "0.23.0"
tempfile = "3.10.1"
tempfile = "3.13.0"

[dependencies]
aw-client-rust = { git = "https://github.com/ActivityWatch/aw-server-rust", rev = "bb787fd" }
Expand All @@ -20,18 +20,18 @@ wayland-protocols = { version = "0.31.2", features = ["staging", "client" ]}
wayland-protocols-plasma = { version = "0.2.0", features = ["client"] }
wayland-protocols-wlr = { version = "0.2.0", features = ["client"] }
x11rb = { version = "0.13.1", features = ["screensaver"] }
zbus = {version = "4.2.1", optional = true}
zbus = {version = "5.0.0", optional = true}
chrono = "0.4.38"
toml = "0.8.13"
toml = "0.8.19"
dirs = "5.0.1"
serde = { workspace = true, features = ["derive"] }
serde_default = "0.2.0"
serde_json = "1.0.117"
regex = "1.10.4"
serde_json = "1.0.132"
regex = "1.11.0"
gethostname = "0.5.0"
log = { workspace = true }
anyhow = { workspace = true }
async-trait = "0.1.80"
async-trait = "0.1.83"
tokio = { workspace = true, features = ["time", "sync", "macros"] }

[features]
Expand Down
2 changes: 1 addition & 1 deletion watchers/src/watchers/kwin_window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use std::sync::{mpsc::channel, Arc};
use std::thread;
use tokio::sync::Mutex;
use zbus::interface;
use zbus::{Connection, ConnectionBuilder};
use zbus::{Connection, conn::Builder as ConnectionBuilder};

const KWIN_SCRIPT_NAME: &str = "activity_watcher";
const KWIN_SCRIPT: &str = include_str!("kwin_window.js");
Expand Down

0 comments on commit 7ac7c9d

Please sign in to comment.