telemetry-safe 0.2.0

Compile-time safe telemetry formatting facade crate
Documentation
1
2
3
4
5
6
7
8
#[test]
fn ui() {
    let tests = trybuild::TestCases::new();
    tests.pass("tests/ui/derive_pass.rs");
    tests.compile_fail("tests/ui/derive_fail_raw_string.rs");
    tests.compile_fail("tests/ui/derive_fail_implicit_display.rs");
    tests.compile_fail("tests/ui/derive_fail_multiple_placeholders.rs");
}