activate 0.5.3

A tool to manage environment-specific configurations. Simplifying working across various settings like Development, Testing, Production, etc.
{
    // 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": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug executable 'activate'",
            "cargo": {
                "args": [
                    "build",
                    "--bin=activate",
                    "--package=activate"
                ],
                "filter": {
                    "name": "activate",
                    "kind": "bin"
                }
            },
            "args": ["test", "-r"], // change as needed
            "cwd": "${workspaceFolder}/tests"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in executable 'activate'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--bin=activate",
                    "--package=activate"
                ],
                "filter": {
                    "name": "activate",
                    "kind": "bin"
                }
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        }
    ]
}