cpu-temp 0.1.0

An Intel CPU temperature monitoring library for Windows and Linux using MSR access
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod cpu;
pub mod temperature;

#[cfg(target_os = "windows")]
pub mod msr;

#[cfg(target_os = "windows")]
pub mod pawnio;

#[cfg(feature = "cli")]
pub mod ui;