unbug 0.5.0

A crate to programmatically invoke debugging breakpoints with helping macros
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
    // Project-wide tabs and spaces configuration
    "editor.tabSize": 4,
    "editor.insertSpaces": true,

    // Ensure newlines at the end of files for git
    "files.insertFinalNewline": true,

    // Important to not run into "unreachable" warnings with testable assertions
    "rust-analyzer.cargo.features": "all",
    "rust-analyzer.check.command": "clippy",
    "rust-analyzer.check.workspace": true,
    "rust-analyzer.procMacro.enable": true,
    "rust-analyzer.runnables.test.overrideCommand": ["cargo", "test", "--package", "${package}", "${target_arg}", "${target}"],
}