inline_tweak 1.2.4

Tweak values directly from the source code
Documentation
1
2
3
4
5
6
7
8
9
use inline_tweak::{tweak, watch};

fn main() {
    loop {
        println!("{}", tweak!("Lorem ipsum")); // Try changing the text while the application is running
        println!("{}", tweak!("габарит не выбран")); // Supports non ascii text
        watch!(); // The thread will sleep here until anything in the file changes
    }
}