inline_tweak 1.2.4

Tweak values directly from the source code
Documentation
1
2
3
4
5
6
7
8
9
10
use inline_tweak::release_tweak;

fn main() {
    loop {
        // Try changing the value while the application is running (even in release mode)
        println!("{}", release_tweak!(1.5));

        std::thread::sleep(std::time::Duration::from_millis(200));
    }
}