]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_cranelift/.vscode/settings.json
Auto merge of #105712 - amg98:feat/vita-support, r=wesleywiser
[rust.git] / compiler / rustc_codegen_cranelift / .vscode / settings.json
1 {
2     // source for rustc_* is not included in the rust-src component; disable the errors about this
3     "rust-analyzer.diagnostics.disabled": ["unresolved-extern-crate", "unresolved-macro-call"],
4     "rust-analyzer.imports.granularity.enforce": true,
5     "rust-analyzer.imports.granularity.group": "module",
6     "rust-analyzer.imports.prefix": "crate",
7     "rust-analyzer.cargo.features": ["unstable-features", "__check_build_system_using_ra"],
8     "rust-analyzer.linkedProjects": [
9         "./Cargo.toml",
10         {
11             "crates": [
12                 {
13                     "root_module": "./example/mini_core.rs",
14                     "edition": "2018",
15                     "deps": [],
16                     "cfg": [],
17                 },
18                 {
19                     "root_module": "./example/mini_core_hello_world.rs",
20                     "edition": "2018",
21                     "deps": [{ "crate": 0, "name": "mini_core" }],
22                     "cfg": [],
23                 },
24                 {
25                     "root_module": "./example/mod_bench.rs",
26                     "edition": "2018",
27                     "deps": [],
28                     "cfg": [],
29                 },
30             ]
31         },
32         {
33             "sysroot_src": "./build_sysroot/sysroot_src/library",
34             "crates": [
35                 {
36                     "root_module": "./example/std_example.rs",
37                     "edition": "2015",
38                     "deps": [],
39                     "cfg": [],
40                 },
41             ]
42         }
43     ]
44 }