aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json36
-rw-r--r--.vscode/settings.json9
2 files changed, 44 insertions, 1 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}
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 6c82d51..c36ecad 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,4 +1,11 @@
1{ 1{
2 "cSpell.words": ["archivator", "datatypes", "eocd"], 2 "cSpell.words": [
3 "archivator",
4 "chrono",
5 "datatypes",
6 "eocd",
7 "LZMA",
8 "Zstandard"
9 ],
3 "rust-analyzer.linkedProjects": ["./Cargo.toml", "./Cargo.toml"] 10 "rust-analyzer.linkedProjects": ["./Cargo.toml", "./Cargo.toml"]
4} 11}