This commit is contained in:
2024-08-23 05:22:49 -06:00
parent bfed9a6ca6
commit e66131b411
7 changed files with 5143 additions and 0 deletions

45
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,45 @@
{
// 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 'surreal_spider'",
"cargo": {
"args": [
"build",
"--bin=surreal_spider",
"--package=surreal_spider"
],
"filter": {
"name": "surreal_spider",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'surreal_spider'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=surreal_spider",
"--package=surreal_spider"
],
"filter": {
"name": "surreal_spider",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}