03 Vscode Debugging

🏠 首页 / Rust 编程 / VSCode 调试

VSCode 调试 #

1. 安装插件 #

2. 配置 #

项目根目录配置 .vscode/launch.json,调试运行时打开 main.rs 文件。

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug Rust Project",
            "cargo": {
                "args": [
                    "build",
                    "--target-dir=${fileDirname}/../target",
                    "--manifest-path=${fileDirname}/../Cargo.toml"
                ]
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        },
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug Rust Unit Tests",
            "cargo": {
                "args": [
                    "test",
                    "--no-run",
                    "--target-dir=${fileDirname}/../target",
                    "--manifest-path=${fileDirname}/../Cargo.toml"
                ]
            },
            "args": [],
            "cwd": "${workspaceFolder}"
        }
    ]
}

支持 Wrokspace 下多 Rust 项目调试。


« Cargo 管理工具

» Rust WASM 编程