Files
telnet-server/.vscode/launch.json
Laika 16dd18b400
Some checks failed
Cargo test & clippy / build (push) Has been cancelled
Cargo test & clippy / rust-clippy-analyze (push) Has been cancelled
Cargo security audit / audit (push) Failing after 4s
Initial commit
2025-11-19 23:04:40 +01:00

14 lines
334 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"preLaunchTask": "rust: cargo build",
"program": "target/debug/telnet_server",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}