summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2022-11-05 02:12:31 -0400
committerGitHub <noreply@github.com>2022-11-05 02:12:31 -0400
commite6e1e9d688e667539333a665b77a52ae2dca7095 (patch)
treeaad3ce0ea9cda5ce56f2df11051a2871b817e18b /src
parent342d0da729398f79fbe69661ba273730701a1997 (diff)
deps: update nvml to 0.8.0 (#869)
Diffstat (limited to 'src')
-rw-r--r--src/app/data_harvester/nvidia.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/data_harvester/nvidia.rs b/src/app/data_harvester/nvidia.rs
index 72928a7c..2cb4b622 100644
--- a/src/app/data_harvester/nvidia.rs
+++ b/src/app/data_harvester/nvidia.rs
@@ -1,3 +1,3 @@
-use nvml_wrapper::{error::NvmlError, NVML};
+use nvml_wrapper::{error::NvmlError, Nvml};
use once_cell::sync::Lazy;
-pub static NVML_DATA: Lazy<Result<NVML, NvmlError>> = Lazy::new(NVML::init);
+pub static NVML_DATA: Lazy<Result<Nvml, NvmlError>> = Lazy::new(Nvml::init);