2 unstable releases

0.2.0 Nov 19, 2022
0.1.0 Nov 16, 2022

#228 in Profiling

Download history 71/week @ 2024-01-05 249/week @ 2024-01-12 248/week @ 2024-01-19 91/week @ 2024-01-26 142/week @ 2024-02-02 165/week @ 2024-02-09 231/week @ 2024-02-16 394/week @ 2024-02-23 207/week @ 2024-03-01 180/week @ 2024-03-08 252/week @ 2024-03-15 330/week @ 2024-03-22 275/week @ 2024-03-29 152/week @ 2024-04-05 106/week @ 2024-04-12 27/week @ 2024-04-19

625 downloads per month

MIT/Apache

17KB

Crates.io MIT/Apache 2.0

might_sleep

Rust library for limiting the cpu usage by trying to target a specific frame rate. The library will internally estimate the time we need to sleep to reach the target fps, taking the programs execution time into account.

example code:

mod usage {
    use std::time::Duration;

    pub const LOW: Duration = Duration::from_millis(100);
    pub const NORMAL: Duration = Duration::from_millis(50);
}

fn main() {
    let mut cpu_limiter = CpuLimiter::new(usage::LOW);

    cpu_limiter.duration = usage::NORMAL; // usage is now normal (50ms delay)
    loop {
        println!("should be called every 50 ms");
        cpu_limiter.might_sleep();
    }
}

License

might_sleep is free and open source! All code in this repository is dual-licensed under either:

at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps