avam-client and oauth2

This commit is contained in:
2024-10-17 00:56:02 +02:00
parent bfc5cbf624
commit f93eb3c429
50 changed files with 5674 additions and 277 deletions

117
.vscode/launch.json vendored Normal file
View 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}"
}
]
}