use fix branch for amdgpu-sysfs

This commit is contained in:
Ilya Zlobintsev
2023-02-22 18:59:27 +02:00
parent 5ed2d4885f
commit 8f17e65db3
3 changed files with 7 additions and 4 deletions

3
Cargo.lock generated
View File

@@ -26,8 +26,7 @@ dependencies = [
[[package]]
name = "amdgpu-sysfs"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bc14034a62b09ab17d9fa18ea0c292b6b4c616864eb611c1ffbbca90d4a58b8"
source = "git+https://github.com/ilya-zlobintsev/amdgpu-sysfs-rs?branch=fix/vddgfx-offset#183eef73983756307bcfe99bde21edbab47a30a0"
dependencies = [
"enum_dispatch",
"serde",

View File

@@ -6,7 +6,9 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
amdgpu-sysfs = { version = "0.9.2", features = ["serde"] }
amdgpu-sysfs = { git = "https://github.com/ilya-zlobintsev/amdgpu-sysfs-rs", branch = "fix/vddgfx-offset", features = [
"serde",
] }
anyhow = "1.0"
bincode = "1.3"
nix = "0.26"

View File

@@ -4,7 +4,9 @@ version = "0.2.0"
edition = "2021"
[dependencies]
amdgpu-sysfs = { version = "0.9.2", features = ["serde"] }
amdgpu-sysfs = { git = "https://github.com/ilya-zlobintsev/amdgpu-sysfs-rs", branch = "fix/vddgfx-offset", features = [
"serde",
] }
serde = { version = "1.0", features = ["derive"] }
indexmap = { version = "*", features = ["serde"] }