botserver/.vscode/launch.json

42 lines
1.1 KiB
JSON
Raw Normal View History

2025-10-06 10:30:17 -03:00
{
2025-10-15 12:45:15 -03:00
"version": "0.2.0",
"configurations": [
2025-10-15 12:45:15 -03:00
{
"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": ["--desktop"],
"env": {
"RUST_LOG": "trace,actix_web=off,aws_sigv4=off,aws_smithy_checksums=off,actix_http=off,mio=off,reqwest=off,aws_runtime=off,aws_smithy_http_client=off,rustls=off,actix_server=off,hyper_util=off,aws_smithy_runtime=off,aws_smithy_runtime_api=off,tracing=off,aws_sdk_s3=off"
},
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": [],
"env": {
"RUST_LOG": "trace"
},
2025-10-15 12:45:15 -03:00
"cwd": "${workspaceFolder}"
}
]
2025-10-15 10:37:04 -03:00
}