rcli-loader 0.1.0

RCLI-loader: The Rust client line interface loader crate, a utility built for versatile monitoring of the progress for running tasks
Documentation
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        /*{
            "name": "(Windows) Launch",
            "type": "cppvsdbg",
            "request": "launch",
            "program": "${workspaceFolder}/target/debug/examples/basic_example.exe",
            "args": [],
            "stopAtEntry": false,
            "cwd": "${fileDirname}",
            "environment": [],
            "console": "integratedTerminal" //"externalTerminal"
        },*/
        {
        "name": "Debug Rust",
        "type": "lldb",
        "request": "launch",
        "program": "${workspaceFolder}/target/debug/examples/basic_example.exe",
        "args": [],
        "cwd": "${workspaceFolder}",
        "preLaunchTask": "cargo build",
        "stopOnEntry": false,
        "terminal": "integrated",
        }
    ]
}