This commit is contained in:
2025-12-03 21:33:25 +00:00
parent f2131a114f
commit 2eddcb15e7
6 changed files with 411 additions and 0 deletions

52
.zed/debug.json Normal file
View File

@@ -0,0 +1,52 @@
// 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"]
}
]