fix: bump amdgpu-sysfs with 5000 series table vddc curve clearing fix

https://github.com/ilya-zlobintsev/LACT/issues/212
This commit is contained in:
Ilya Zlobintsev 2023-12-20 22:59:18 +02:00
parent d6b4a30076
commit 509640f133
3 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View File

@ -41,9 +41,9 @@ dependencies = [
[[package]]
name = "amdgpu-sysfs"
version = "0.12.4"
version = "0.12.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3145d4503aaa97b5e51367e2bea4935e478a50b7d8e667bf0b71ccedf4f866c6"
checksum = "59af03e9a4fe381f4ee8b2404ef22513a626010c6dc7e5d225cdbf99d0a74022"
dependencies = [
"enum_dispatch",
"serde",

View File

@ -459,7 +459,7 @@ impl App {
let delay = self
.daemon_client
.batch_set_clocks_value(&gpu_id, clocks_commands)
.context("Could not commit clocks settins")?;
.context("Could not commit clocks settings")?;
self.ask_confirmation(gpu_id.clone(), delay);
}

View File

@ -7,7 +7,7 @@ edition = "2021"
args = ["clap"]
[dependencies]
amdgpu-sysfs = { version = "0.12.3", features = ["serde"] }
amdgpu-sysfs = { version = "0.12.5", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
indexmap = { version = "*", features = ["serde"] }
clap = { version = "4.4.6", features = ["derive"], optional = true }