53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
// Project-local debug tasks
|
|
//
|
|
// For more documentation on how to configure debug tasks,
|
|
// see: https://zed.dev/docs/debugger
|
|
[
|
|
{
|
|
"adapter": "CodeLLDB",
|
|
"label": "cargo run -p aoc",
|
|
"build": {
|
|
"label": "cargo run -p aoc",
|
|
"command": "cargo",
|
|
"args": ["build", "--package", "aoc"],
|
|
"env": {
|
|
"RUSTC_TOOLCHAIN": "/home/sylv/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu"
|
|
},
|
|
"cwd": "/home/sylv/Documents/my-repos/aoc",
|
|
"use_new_terminal": false,
|
|
"allow_concurrent_runs": false,
|
|
"reveal": "always",
|
|
"reveal_target": "dock",
|
|
"hide": "never",
|
|
"tags": [],
|
|
"shell": "system",
|
|
"show_summary": false,
|
|
"show_command": false
|
|
},
|
|
"sourceLanguages": ["rust"]
|
|
},
|
|
{
|
|
"adapter": "CodeLLDB",
|
|
"label": "cargo run --bin day3",
|
|
"build": {
|
|
"label": "cargo run --bin day3",
|
|
"command": "cargo",
|
|
"args": ["build", "--bin", "day3"],
|
|
"env": {
|
|
"RUSTC_TOOLCHAIN": "/home/sylv/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu"
|
|
},
|
|
"cwd": "/home/sylv/Documents/my-repos/aoc",
|
|
"use_new_terminal": false,
|
|
"allow_concurrent_runs": false,
|
|
"reveal": "always",
|
|
"reveal_target": "dock",
|
|
"hide": "never",
|
|
"tags": [],
|
|
"shell": "system",
|
|
"show_summary": false,
|
|
"show_command": false
|
|
},
|
|
"sourceLanguages": ["rust"]
|
|
}
|
|
]
|