50 lines
1.1 KiB
JSON
50 lines
1.1 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 executable 'frida-deepfreeze-rs'",
|
|
"cargo": {
|
|
"args": [
|
|
"build",
|
|
"--bin=frida-deepfreeze-rs",
|
|
"--package=frida-deepfreeze-rs"
|
|
],
|
|
"filter": {
|
|
"name": "frida-deepfreeze-rs",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}",
|
|
"env": {
|
|
"RUST_BACKTRACE": "1",
|
|
"FRIDA_CODE": "console.log('Hello from Frida!');"
|
|
}
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Debug unit tests in executable 'frida-deepfreeze-rs'",
|
|
"cargo": {
|
|
"args": [
|
|
"test",
|
|
"--no-run",
|
|
"--bin=frida-deepfreeze-rs",
|
|
"--package=frida-deepfreeze-rs"
|
|
],
|
|
"filter": {
|
|
"name": "frida-deepfreeze-rs",
|
|
"kind": "bin"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
}
|
|
]
|
|
}
|