15 lines
442 B
Rust
15 lines
442 B
Rust
//! # ember-tune: A physically-grounded thermal and power optimizer for Linux.
|
|
//!
|
|
//! This crate provides the core library for `ember-tune`, a tool that
|
|
//! scientifically determines the optimal power and thermal settings for laptops
|
|
//! by measuring physical properties like Thermal Resistance and the "Silicon Knee".
|
|
|
|
pub mod mediator;
|
|
pub mod sal;
|
|
pub mod load;
|
|
pub mod orchestrator;
|
|
pub mod ui;
|
|
pub mod engine;
|
|
pub mod cli;
|
|
pub mod sys;
|