internet_mapper/.vscode/launch.json

48 lines
1.4 KiB
JSON
Raw Normal View History

2024-08-23 11:22:49 +00:00
{
// 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 'surreal_spider'",
2024-11-09 18:30:32 +00:00
"env": {
2024-11-09 22:28:10 +00:00
"RUST_LOG": "surreal_spider=trace,reqwest=trace",
2024-11-09 18:30:32 +00:00
},
2024-08-23 11:22:49 +00:00
"cargo": {
"args": [
"build",
"--bin=surreal_spider",
"--package=surreal_spider"
],
"filter": {
"name": "surreal_spider",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'surreal_spider'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=surreal_spider",
"--package=surreal_spider"
],
"filter": {
"name": "surreal_spider",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}