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