This commit is contained in:
Elijah McMorris 2023-06-08 03:25:11 +00:00
parent 4074a97ae2
commit f3bc96b251
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
7 changed files with 124 additions and 36 deletions

43
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,43 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'ark-invest-api-rust-data'",
"cargo": {
"args": [
"build",
"--bin=ark-invest-api-rust-data",
"--package=ark-invest-api-rust-data"
],
"filter": {
"name": "ark-invest-api-rust-data",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'ark-invest-api-rust-data'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=ark-invest-api-rust-data",
"--package=ark-invest-api-rust-data"
],
"filter": {
"name": "ark-invest-api-rust-data",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}