summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
blob: f74c15aa5a76b9618151f7c6040ef1a0ce12f943 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug executable",
            "cargo": {
                "args": [
                    "build",
                    "--bin=hello_remote_world",
                    "--package=hello_remote_world",
                    "--manifest-path=Cargo.toml"
                ],
                "filter": {
                    "kind": "bin"
                }
            },
            "args": []
        }
    ]
}