🏡 index : old_projects/url_shortener.git

author yaqubroli <walchuk2018@icloud.com> 2022-12-23 21:35:46.0 -08:00:00
committer yaqubroli <walchuk2018@icloud.com> 2022-12-23 21:35:46.0 -08:00:00
commit
dd37d7d65a7d58f061fbaa4c56a5db8653e867cd [patch]
tree
ae6de724e6db42c462de2fde378b304ee82226a3
parent
ff6cfb4edd9f1d33cca8a2de94eb77ed4a00871d
parent
1404dc720e8b73dd549b6a6cdb2af94749f68ab9
download
dd37d7d65a7d58f061fbaa4c56a5db8653e867cd.tar.gz

Merge branch 'master' of github.com:yaqubroli/url_shortener



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}"
        }

    ]

}