Skip to content

Commit

Permalink
Merge pull request #97 from AaronErhardt/update-deps
Browse files Browse the repository at this point in the history
all(chore): Update dependencies
  • Loading branch information
AaronErhardt authored Jun 16, 2024
2 parents c4e28af + 763baa0 commit d650fc0
Show file tree
Hide file tree
Showing 16 changed files with 681 additions and 1,095 deletions.
841 changes: 290 additions & 551 deletions Cargo.lock

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ exclude = [
]

[workspace.package]
name = "tuxedo-rs"
version = "0.2.5"
rust-version = "1.72.0"
authors = ["Aaron Erhardt <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion tailor_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository.workspace = true
[dependencies]
thiserror = "1"
serde_json = "1"
zbus = { version = "3", default-features = false, features = ["tokio"] }
zbus = { version = "4", default-features = false, features = ["tokio"] }

tailor_api = {version = "0.2.5", path = "../tailor_api" }

Expand Down
4 changes: 2 additions & 2 deletions tailor_client/src/dbus/fan.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use zbus::{dbus_proxy, fdo};
use zbus::{fdo, proxy};

#[dbus_proxy(
#[proxy(
interface = "com.tux.Tailor.Fan",
default_service = "com.tux.Tailor",
default_path = "/com/tux/Tailor"
Expand Down
4 changes: 2 additions & 2 deletions tailor_client/src/dbus/led.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use zbus::{dbus_proxy, fdo};
use zbus::{fdo, proxy};

#[dbus_proxy(
#[proxy(
interface = "com.tux.Tailor.Led",
default_service = "com.tux.Tailor",
default_path = "/com/tux/Tailor"
Expand Down
4 changes: 2 additions & 2 deletions tailor_client/src/dbus/performance.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use zbus::{dbus_proxy, fdo};
use zbus::{fdo, proxy};

#[dbus_proxy(
#[proxy(
interface = "com.tux.Tailor.Performance",
default_service = "com.tux.Tailor",
default_path = "/com/tux/Tailor"
Expand Down
4 changes: 2 additions & 2 deletions tailor_client/src/dbus/profiles.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use zbus::{dbus_proxy, fdo};
use zbus::{fdo, proxy};

#[dbus_proxy(
#[proxy(
interface = "com.tux.Tailor.Profiles",
default_service = "com.tux.Tailor",
default_path = "/com/tux/Tailor"
Expand Down
Loading

0 comments on commit d650fc0

Please sign in to comment.