Files
stacks-puppet-node/.vscode/launch.json
2020-04-16 17:56:16 +02:00

162 lines
4.7 KiB
JSON

{
// 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 unit tests in library 'blockstack_lib'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=blockstack-core"
],
"filter": {
"name": "blockstack_lib",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'blockstack-core' testnet",
"cargo": {
"args": [
"build",
"--bin=blockstack-core",
"--package=blockstack-core"
],
"filter": {
"name": "blockstack-core",
"kind": "bin"
}
},
"args": [
"testnet",
"${workspaceFolder}/Stacks.toml"
],
"cwd": "${workspaceFolder}",
"env": {
"RUST_BACKTRACE": "full",
}
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'blockstack-core'",
"cargo": {
"args": [
"build",
"--bin=blockstack-core",
"--package=blockstack-core"
],
"filter": {
"name": "blockstack-core",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'blockstack-core'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=blockstack-core",
"--package=blockstack-core"
],
"filter": {
"name": "blockstack-core",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'clarity-cli'",
"cargo": {
"args": [
"build",
"--bin=clarity-cli",
"--package=blockstack-core"
],
"filter": {
"name": "clarity-cli",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'clarity-cli'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=clarity-cli",
"--package=blockstack-core"
],
"filter": {
"name": "clarity-cli",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'blockstack-cli'",
"cargo": {
"args": [
"build",
"--bin=blockstack-cli",
"--package=blockstack-core"
],
"filter": {
"name": "blockstack-cli",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'blockstack-cli'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=blockstack-cli",
"--package=blockstack-core"
],
"filter": {
"name": "blockstack-cli",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}