triton.code-workspace 534 Bytes
Newer Older
1
2
3
4
5
6
7
8
{
    "folders": [
        {
            "path": "."
        }
    ],
    "settings": {
        "rust-analyzer.linkedProjects": [
Ryan Olson's avatar
Ryan Olson committed
9
            "applications/llm/count/Cargo.toml",
10
11
            "llm/rust/Cargo.toml",
            "runtime/rust/Cargo.toml",
12
            "python-wheel/Cargo.toml",
13
14
15
16
17
18
19
20
21
22
23
            "examples/rust/Cargo.toml"
        ],
        "rust-analyzer.procMacro.enable": true,
    },
    "extensions": {
        "recommendations": [
            "ms-python.python",
            "rust-lang.rust-analyzer"
        ]
    }
}