Files
AOC2025/.zed/debug.json
2025-12-07 09:07:21 +00:00

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 day7",
"build": {
"label": "cargo run --bin day7",
"command": "cargo",
"args": ["build", "--bin", "day7"],
"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"],
},
]