inline_tweak 1.2.4

Tweak values directly from the source code
Documentation
1
2
3
4
5
6
fn main() {
    loop {
        println!("{}", inline_tweak::tweak!(11.5)); // Try changing the value while the application is running
        inline_tweak::watch!();
    }
}