basic stuff

This commit is contained in:
2023-09-14 20:01:34 +00:00
parent 0507887dfa
commit 3b2f636e41
7 changed files with 151 additions and 14 deletions

45
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,45 @@
{
// 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 'iot-cloud'",
"cargo": {
"args": [
"build",
"--bin=iot-cloud",
"--package=iot-cloud"
],
"filter": {
"name": "iot-cloud",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'iot-cloud'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=iot-cloud",
"--package=iot-cloud"
],
"filter": {
"name": "iot-cloud",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}