2025-10-06 10:30:17 -03:00
|
|
|
{
|
2025-10-15 12:45:15 -03: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 'botserver'",
|
|
|
|
|
"cargo": {
|
|
|
|
|
"args": ["build", "--bin=botserver", "--package=botserver"],
|
|
|
|
|
"filter": {
|
|
|
|
|
"name": "botserver",
|
|
|
|
|
"kind": "bin"
|
2025-10-06 10:30:17 -03:00
|
|
|
}
|
2025-10-15 12:45:15 -03:00
|
|
|
},
|
|
|
|
|
"args": [],
|
2025-10-31 07:30:37 -03:00
|
|
|
"env": {
|
2025-10-31 15:40:52 -03:00
|
|
|
"RUST_LOG": "debug"
|
2025-10-31 07:30:37 -03:00
|
|
|
},
|
2025-10-15 12:45:15 -03:00
|
|
|
"cwd": "${workspaceFolder}"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "lldb",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"name": "Debug unit tests in executable 'botserver'",
|
|
|
|
|
"cargo": {
|
|
|
|
|
"args": ["test", "--no-run", "--bin=botserver", "--package=botserver"],
|
|
|
|
|
"filter": {
|
|
|
|
|
"name": "botserver",
|
|
|
|
|
"kind": "bin"
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"args": [],
|
2025-10-31 07:30:37 -03:00
|
|
|
"env": {
|
|
|
|
|
"RUST_LOG": "trace"
|
|
|
|
|
},
|
2025-10-15 12:45:15 -03:00
|
|
|
"cwd": "${workspaceFolder}"
|
|
|
|
|
}
|
|
|
|
|
]
|
2025-10-15 10:37:04 -03:00
|
|
|
}
|