mirror of
https://github.com/ilya-zlobintsev/LACT.git
synced 2025-02-25 18:55:26 -06:00
chore: update dependencies, adopt breaking changes
This commit is contained in:
839
Cargo.lock
generated
839
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -6,4 +6,4 @@ edition = "2021"
|
||||
[dependencies]
|
||||
lact-client = { path = "../lact-client" }
|
||||
lact-schema = { path = "../lact-schema", features = ["args"] }
|
||||
anyhow = "1.0.71"
|
||||
anyhow = "1.0.75"
|
||||
|
||||
@@ -5,8 +5,8 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
lact-schema = { path = "../lact-schema" }
|
||||
anyhow = "1.0.71"
|
||||
nix = { version = "0.26.2", default-features = false }
|
||||
serde = "1.0.163"
|
||||
anyhow = "1.0.75"
|
||||
nix = { version = "0.27.1", default-features = false }
|
||||
serde = "1.0.188"
|
||||
tracing = "0.1.37"
|
||||
serde_json = "1.0.96"
|
||||
serde_json = "1.0.106"
|
||||
|
||||
@@ -10,12 +10,12 @@ drm = ["libdrm_amdgpu_sys"]
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
bincode = "1.3"
|
||||
nix = "0.26"
|
||||
nix = { version = "0.27", features = ["user", "fs", "process"] }
|
||||
pciid-parser = { version = "0.6", features = ["serde"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
serde_yaml = "0.9"
|
||||
tokio = { version = "1.28.2", features = [
|
||||
tokio = { version = "1.32.0", features = [
|
||||
"rt",
|
||||
"macros",
|
||||
"net",
|
||||
@@ -32,8 +32,8 @@ futures = { version = "0.3.28", default-features = false, features = [
|
||||
"std",
|
||||
"alloc",
|
||||
] }
|
||||
serde_with = { version = "3.0.0", default-features = false, features = [
|
||||
serde_with = { version = "3.3.0", default-features = false, features = [
|
||||
"macros",
|
||||
] }
|
||||
zbus = "3.13.1"
|
||||
libdrm_amdgpu_sys = { optional = true, version = "0.1.4" }
|
||||
zbus = "3.14.1"
|
||||
libdrm_amdgpu_sys = { optional = true, version = "0.1.6" }
|
||||
|
||||
@@ -23,7 +23,7 @@ pub async fn listen_events(handler: Handler) {
|
||||
}
|
||||
|
||||
async fn connect_proxy() -> anyhow::Result<Proxy<'static>> {
|
||||
let conn = Connection::system().await?;
|
||||
let conn = Box::pin(Connection::system()).await?;
|
||||
let proxy = Proxy::new_owned(
|
||||
conn,
|
||||
"org.freedesktop.login1",
|
||||
|
||||
@@ -12,10 +12,10 @@ gtk-tests = []
|
||||
lact-client = { path = "../lact-client" }
|
||||
lact-daemon = { path = "../lact-daemon" }
|
||||
gtk = { version = "0.6", package = "gtk4", features = ["v4_6"] }
|
||||
once_cell = "1.17.2"
|
||||
once_cell = "1.18.0"
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
anyhow = "1.0"
|
||||
|
||||
[dev-dependencies]
|
||||
pretty_assertions = "1.3.0"
|
||||
pretty_assertions = "1.4.0"
|
||||
|
||||
@@ -10,7 +10,7 @@ args = ["clap"]
|
||||
amdgpu-sysfs = { version = "0.11.0", features = ["serde"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
indexmap = { version = "*", features = ["serde"] }
|
||||
clap = { version = "4.3.0", features = ["derive"], optional = true }
|
||||
clap = { version = "4.4.2", features = ["derive"], optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0"
|
||||
|
||||
@@ -12,4 +12,4 @@ lact-daemon = { path = "../lact-daemon", default-features = false }
|
||||
lact-schema = { path = "../lact-schema", features = ["args"] }
|
||||
lact-cli = { path = "../lact-cli" }
|
||||
lact-gui = { path = "../lact-gui", optional = true }
|
||||
anyhow = "1.0.71"
|
||||
anyhow = "1.0.75"
|
||||
|
||||
Reference in New Issue
Block a user