diff options
| author | Igor Tolmachov <me@igorek.dev> | 2023-09-08 17:33:59 +0900 |
|---|---|---|
| committer | Igor Tolmachev <me@igorek.dev> | 2024-06-23 15:34:33 +0900 |
| commit | 9003b81813ff171edfc6101868c226c5c7d1957c (patch) | |
| tree | 63db162b56b282bc2ec71f86f26dee8dbc2550c8 /.vscode/launch.json | |
| parent | b8c83ab5c133dc1330aa425a012d45f3c62e7ef1 (diff) | |
| download | archivator-9003b81813ff171edfc6101868c226c5c7d1957c.tar.gz archivator-9003b81813ff171edfc6101868c226c5c7d1957c.zip | |
Add basic zip reader
Diffstat (limited to '.vscode/launch.json')
| -rw-r--r-- | .vscode/launch.json | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ebf135c --- /dev/null +++ b/.vscode/launch.json | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | { | ||
| 2 | // Use IntelliSense to learn about possible attributes. | ||
| 3 | // Hover to view descriptions of existing attributes. | ||
| 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
| 5 | "version": "0.2.0", | ||
| 6 | "configurations": [ | ||
| 7 | { | ||
| 8 | "type": "lldb", | ||
| 9 | "request": "launch", | ||
| 10 | "name": "Debug unit tests in library 'archivator'", | ||
| 11 | "cargo": { | ||
| 12 | "args": ["test", "--no-run", "--lib", "--package=archivator"], | ||
| 13 | "filter": { | ||
| 14 | "name": "archivator", | ||
| 15 | "kind": "lib" | ||
| 16 | } | ||
| 17 | }, | ||
| 18 | "args": [], | ||
| 19 | "cwd": "${workspaceFolder}" | ||
| 20 | }, | ||
| 21 | { | ||
| 22 | "type": "lldb", | ||
| 23 | "request": "launch", | ||
| 24 | "name": "Debug integration test 'archive'", | ||
| 25 | "cargo": { | ||
| 26 | "args": ["test", "--no-run", "--test=archive", "--package=archivator"], | ||
| 27 | "filter": { | ||
| 28 | "name": "archive", | ||
| 29 | "kind": "test" | ||
| 30 | } | ||
| 31 | }, | ||
| 32 | "args": [], | ||
| 33 | "cwd": "${workspaceFolder}" | ||
| 34 | } | ||
| 35 | ] | ||
| 36 | } | ||
