Files
ember-tune-rs/src/lib.rs
2026-02-26 17:17:57 +01:00

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;