summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_codegen_cranelift/.vscode/settings.json
blob: 13301bf20a5ed7d57051c9b45fa4165a98e8b7b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
    // source for rustc_* is not included in the rust-src component; disable the errors about this
    "rust-analyzer.diagnostics.disabled": ["unresolved-extern-crate", "unresolved-macro-call"],
    "rust-analyzer.imports.granularity.enforce": true,
    "rust-analyzer.imports.granularity.group": "module",
    "rust-analyzer.imports.prefix": "crate",
    "rust-analyzer.cargo.features": ["unstable-features"],
    "rust-analyzer.linkedProjects": [
        "./Cargo.toml",
        //"./build_sysroot/sysroot_src/library/std/Cargo.toml",
        {
            "roots": [
                "./example/mini_core.rs",
                "./example/mini_core_hello_world.rs",
                "./example/mod_bench.rs"
            ],
            "crates": [
                {
                    "root_module": "./example/mini_core.rs",
                    "edition": "2018",
                    "deps": [],
                    "cfg": [],
                },
                {
                    "root_module": "./example/mini_core_hello_world.rs",
                    "edition": "2018",
                    "deps": [{ "crate": 0, "name": "mini_core" }],
                    "cfg": [],
                },
                {
                    "root_module": "./example/mod_bench.rs",
                    "edition": "2018",
                    "deps": [],
                    "cfg": [],
                },
            ]
        },
        {
            "roots": ["./example/std_example.rs"],
            "crates": [
                {
                    "root_module": "./example/std_example.rs",
                    "edition": "2018",
                    "deps": [{ "crate": 1, "name": "std" }],
                    "cfg": [],
                },
                {
                    "root_module": "./build_sysroot/sysroot_src/library/std/src/lib.rs",
                    "edition": "2018",
                    "deps": [],
                    "cfg": [],
                },
            ]
        },
        {
            "roots": ["./y.rs"],
            "crates": [
                {
                    "root_module": "./y.rs",
                    "edition": "2018",
                    "deps": [{ "crate": 1, "name": "std" }],
                    "cfg": [],
                },
                {
                    "root_module": "./build_sysroot/sysroot_src/library/std/src/lib.rs",
                    "edition": "2018",
                    "deps": [],
                    "cfg": [],
                },
            ]
        }
    ]
}