auto-cpufreq 3.0.0-rust2

Automatic CPU speed & power optimizer for Linux
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod globals;
pub mod tlp_stat_parser;
pub mod power_helper;
pub mod config;
pub mod core;
pub mod battery;
pub mod modules;

// Re-exports
pub use globals::*;
pub use config::{CONFIG, find_config_file}; // CONFIG re-export now works

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