2023-06-28 20:32:25 +00:00
|
|
|
{
|
2023-07-03 02:46:19 +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": [
|
2023-07-02 01:27:03 +00:00
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
2023-07-03 02:46:19 +00:00
|
|
|
"name": "meowy-cli (Print)",
|
2023-07-02 01:27:03 +00:00
|
|
|
"program": "${workspaceFolder}/target/debug/meowy-cli",
|
2023-07-03 02:46:19 +00:00
|
|
|
"args": [
|
|
|
|
"print"
|
|
|
|
],
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"sourceMap": {},
|
|
|
|
"sourceLanguages": [
|
|
|
|
"rust"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "meowy-cli (Print) json",
|
|
|
|
"program": "${workspaceFolder}/target/debug/meowy-cli",
|
|
|
|
"args": [
|
|
|
|
"print",
|
|
|
|
"--json"
|
|
|
|
],
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"sourceMap": {},
|
|
|
|
"sourceLanguages": [
|
|
|
|
"rust"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "meowy-cli (Print) only url",
|
|
|
|
"program": "${workspaceFolder}/target/debug/meowy-cli",
|
|
|
|
"args": [
|
|
|
|
"print",
|
|
|
|
"--url"
|
|
|
|
],
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"sourceMap": {},
|
|
|
|
"sourceLanguages": [
|
|
|
|
"rust"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "lldb",
|
|
|
|
"request": "launch",
|
|
|
|
"name": "meowy-cli (Print) only name",
|
|
|
|
"program": "${workspaceFolder}/target/debug/meowy-cli",
|
|
|
|
"args": [
|
|
|
|
"print",
|
|
|
|
"--name"
|
|
|
|
],
|
2023-07-02 01:27:03 +00:00
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"sourceMap": {},
|
|
|
|
"sourceLanguages": [
|
|
|
|
"rust"
|
|
|
|
],
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|