mirror of
https://github.com/natsukagami/youmubot.git
synced 2025-04-16 07:18:54 +00:00
82 lines
No EOL
2.4 KiB
JSON
82 lines
No EOL
2.4 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 executable 'youmubot-osu'",
|
|
"cargo": {
|
|
"args": [
|
|
"build",
|
|
"--bin=youmubot-osu",
|
|
"--package=youmubot-osu"
|
|
],
|
|
"filter": {
|
|
"name": "youmubot-osu",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug unit tests in executable 'youmubot-osu'",
|
|
"cargo": {
|
|
"args": [
|
|
"test",
|
|
"--no-run",
|
|
"--bin=youmubot-osu",
|
|
"--package=youmubot-osu"
|
|
],
|
|
"filter": {
|
|
"name": "youmubot-osu",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug executable 'youmubot'",
|
|
"cargo": {
|
|
"args": [
|
|
"build",
|
|
"--bin=youmubot",
|
|
"--package=youmubot"
|
|
],
|
|
"filter": {
|
|
"name": "youmubot",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug unit tests in executable 'youmubot'",
|
|
"cargo": {
|
|
"args": [
|
|
"test",
|
|
"--no-run",
|
|
"--bin=youmubot",
|
|
"--package=youmubot"
|
|
],
|
|
"filter": {
|
|
"name": "youmubot",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
]
|
|
} |