launch.json 808 B

12345678910111213141516171819202122232425262728
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "type": "lldb",
  9. "request": "launch",
  10. "name": "Debug binary",
  11. "cargo": {
  12. "args": [ "build" ]
  13. },
  14. "args": ["--features", "testing"],
  15. "cwd": "${workspaceFolder}"
  16. },
  17. {
  18. "type": "lldb",
  19. "request": "launch",
  20. "name": "Debug unit tests",
  21. "cargo": {
  22. "args": [ "+nightly", "test" ]
  23. },
  24. "args": [],
  25. "cwd": "${workspaceFolder}"
  26. }
  27. ]
  28. }