dynamo.code-workspace 579 Bytes
Newer Older
1
2
3
4
5
6
7
8
{
    "folders": [
        {
            "path": "."
        }
    ],
    "settings": {
        "rust-analyzer.linkedProjects": [
9
            "components/metrics/Cargo.toml",
10
            "launch/dynamo-run/Cargo.toml",
11
12
13
            "lib/llm/Cargo.toml",
            "lib/runtime/Cargo.toml",
            "lib/bindings/python/Cargo.toml",
14
15
16
17
18
19
20
21
22
23
24
            "examples/rust/Cargo.toml"
        ],
        "rust-analyzer.procMacro.enable": true,
    },
    "extensions": {
        "recommendations": [
            "ms-python.python",
            "rust-lang.rust-analyzer"
        ]
    }
}