Skip to content

Commit

Permalink
working prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
cbdonohue committed Aug 2, 2024
1 parent 7348796 commit 2589489
Show file tree
Hide file tree
Showing 5 changed files with 554 additions and 261 deletions.
45 changes: 45 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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 'weather_tui'",
"cargo": {
"args": [
"build",
"--bin=weather_tui",
"--package=weather_tui"
],
"filter": {
"name": "weather_tui",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'weather_tui'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=weather_tui",
"--package=weather_tui"
],
"filter": {
"name": "weather_tui",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
Loading

0 comments on commit 2589489

Please sign in to comment.