tcpasters/.vscode/launch.json

271 lines
No EOL
7.8 KiB
JSON

{
// 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 unit tests in library 'tcpaste'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=tcpaste"
],
"filter": {
"name": "tcpaste",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'tcp-pasted'",
"cargo": {
"args": [
"build",
"--bin=tcp-pasted",
"--package=tcpaste"
],
"filter": {
"name": "tcp-pasted",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'tcp-pasted'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=tcp-pasted",
"--package=tcpaste"
],
"filter": {
"name": "tcp-pasted",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'tcp-erased'",
"cargo": {
"args": [
"build",
"--bin=tcp-erased",
"--package=tcpaste"
],
"filter": {
"name": "tcp-erased",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'tcp-erased'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=tcp-erased",
"--package=tcpaste"
],
"filter": {
"name": "tcp-erased",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'tcp-expire'",
"cargo": {
"args": [
"build",
"--bin=tcp-expire",
"--package=tcpaste"
],
"filter": {
"name": "tcp-expire",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'tcp-expire'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=tcp-expire",
"--package=tcpaste"
],
"filter": {
"name": "tcp-expire",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'tcp-filter-cli'",
"cargo": {
"args": [
"build",
"--bin=tcp-filter-cli",
"--package=tcpaste"
],
"filter": {
"name": "tcp-filter-cli",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'tcp-filter-cli'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=tcp-filter-cli",
"--package=tcpaste"
],
"filter": {
"name": "tcp-filter-cli",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'tcp-filter-hasher'",
"cargo": {
"args": [
"build",
"--bin=tcp-filter-hasher",
"--package=tcpaste"
],
"filter": {
"name": "tcp-filter-hasher",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'tcp-filter-hasher'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=tcp-filter-hasher",
"--package=tcpaste"
],
"filter": {
"name": "tcp-filter-hasher",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'tcp-filter-nude'",
"cargo": {
"args": [
"build",
"--bin=tcp-filter-nude",
"--package=tcpaste"
],
"filter": {
"name": "tcp-filter-nude",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'tcp-filter-nude' (DRY)",
"cargo": {
"args": [
"build",
"--bin=tcp-filter-nude",
"--package=tcpaste"
],
"filter": {
"name": "tcp-filter-nude",
"kind": "bin"
}
},
"args": [
"--dry-run",
"--threads=1",
"--depth=2"
],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'tcp-filter-nude'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=tcp-filter-nude",
"--package=tcpaste"
],
"filter": {
"name": "tcp-filter-nude",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}