avam-client and oauth2
This commit is contained in:
117
.vscode/launch.json
vendored
Normal file
117
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,117 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "Debug unit tests in library 'avam'",
|
||||
"cargo": {
|
||||
"args": [
|
||||
"test",
|
||||
"--no-run",
|
||||
"--lib",
|
||||
"--package=avam"
|
||||
],
|
||||
"filter": {
|
||||
"name": "avam",
|
||||
"kind": "lib"
|
||||
}
|
||||
},
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "Debug executable 'avam'",
|
||||
"cargo": {
|
||||
"args": [
|
||||
"build",
|
||||
"--bin=avam",
|
||||
"--package=avam"
|
||||
],
|
||||
"filter": {
|
||||
"name": "avam",
|
||||
"kind": "bin"
|
||||
}
|
||||
},
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "Debug unit tests in executable 'avam'",
|
||||
"cargo": {
|
||||
"args": [
|
||||
"test",
|
||||
"--no-run",
|
||||
"--bin=avam",
|
||||
"--package=avam"
|
||||
],
|
||||
"filter": {
|
||||
"name": "avam",
|
||||
"kind": "bin"
|
||||
}
|
||||
},
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "Debug executable 'avam-client'",
|
||||
"cargo": {
|
||||
"args": [
|
||||
"build",
|
||||
"--bin=avam-client",
|
||||
"--package=avam-client"
|
||||
],
|
||||
"filter": {
|
||||
"name": "avam-client",
|
||||
"kind": "bin"
|
||||
}
|
||||
},
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "Debug unit tests in executable 'avam-client'",
|
||||
"cargo": {
|
||||
"args": [
|
||||
"test",
|
||||
"--no-run",
|
||||
"--bin=avam-client",
|
||||
"--package=avam-client"
|
||||
],
|
||||
"filter": {
|
||||
"name": "avam-client",
|
||||
"kind": "bin"
|
||||
}
|
||||
},
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}"
|
||||
},
|
||||
{
|
||||
"type": "lldb",
|
||||
"request": "launch",
|
||||
"name": "Debug unit tests in library 'avam_wasm'",
|
||||
"cargo": {
|
||||
"args": [
|
||||
"test",
|
||||
"--no-run",
|
||||
"--lib",
|
||||
"--package=avam-wasm"
|
||||
],
|
||||
"filter": {
|
||||
"name": "avam_wasm",
|
||||
"kind": "lib"
|
||||
}
|
||||
},
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}"
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user