{ // 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 'x2t-sandbox'", "cargo": { "args": [ "build", "--bin=x2t-sandbox", "--package=x2t-sandbox", "--target=x86_64-unknown-linux-gnu" ], "filter": { "name": "x2t-sandbox", "kind": "bin" } }, "args": [ "/usr/bin/ls" ], "cwd": "${workspaceFolder}", "env": { "RUST_LOG": "DEBUG" } }, { "type": "lldb", "request": "launch", "name": "Debug unit tests in executable 'x2t-sandbox'", "cargo": { "args": [ "test", "--no-run", "--bin=x2t-sandbox", "--package=x2t-sandbox" ], "filter": { "name": "x2t-sandbox", "kind": "bin" } }, "args": [], "cwd": "${workspaceFolder}" } ] }