Merge branch 'master' of github.com:yaqubroli/url_shortener
Diff
.vscode/launch.json | 45 ---------------------------------------------
1 file changed, 45 deletions(-)
@@ -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}"
}
]
}