🏡 index : old_projects/url_shortener.git

author Jacob Walchuk <walchuk2018@icloud.com> 2022-12-23 21:22:28.0 -08:00:00
committer GitHub <noreply@github.com> 2022-12-23 21:22:28.0 -08:00:00
commit
1404dc720e8b73dd549b6a6cdb2af94749f68ab9 [patch]
tree
d2d9e5a307c819d5ec5de356e3e89613018ff736
parent
4db77d419d69ebc650f271ea457a4806760847ec
download
1404dc720e8b73dd549b6a6cdb2af94749f68ab9.tar.gz

Delete .vscode directory



Diff

 .vscode/launch.json | 45 ---------------------------------------------
 1 file changed, 45 deletions(-)

diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index 6df5d8a..0000000 100644
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,45 +1,0 @@
{
    // 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 'url_shortener'",
            "cargo": {
                "args": [
                    "build",
                    "--bin=url_shortener",
                    "--package=url_shortener"
                ],

                "filter": {
                    "name": "url_shortener",
                    "kind": "bin"
                }

            },

            "args": [],
            "cwd": "${workspaceFolder}"
        },

        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug unit tests in executable 'url_shortener'",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--bin=url_shortener",
                    "--package=url_shortener"
                ],

                "filter": {
                    "name": "url_shortener",
                    "kind": "bin"
                }

            },

            "args": [],
            "cwd": "${workspaceFolder}"
        }

    ]

}