|
15 | 15 | "@jackh726",
|
16 | 16 | "@cjgillot"
|
17 | 17 | ],
|
| 18 | + "compiler": [ |
| 19 | + "compiler-team", |
| 20 | + "compiler-team-contributors" |
| 21 | + ], |
18 | 22 | "libs": [
|
19 | 23 | "@dtolnay",
|
20 | 24 | "@joshtriplett",
|
|
32 | 36 | "@GuillaumeGomez",
|
33 | 37 | "@ollie27",
|
34 | 38 | "@CraftSpider"
|
| 39 | + ], |
| 40 | + "query-system": [ |
| 41 | + "@cjgillot" |
| 42 | + ], |
| 43 | + "incremental": [ |
| 44 | + "@michaelwoerister", |
| 45 | + "@wesleywiser" |
| 46 | + ], |
| 47 | + "typeck": [], |
| 48 | + "diagnostics": [ |
| 49 | + "@davidtwco", |
| 50 | + "@estebank", |
| 51 | + "@oli-obk" |
| 52 | + ], |
| 53 | + "parser": [ |
| 54 | + "@davidtwco", |
| 55 | + "@estebank", |
| 56 | + "@petrochenkov" |
| 57 | + ], |
| 58 | + "lexer": [ |
| 59 | + "@petrochenkov" |
| 60 | + ], |
| 61 | + "mir": [ |
| 62 | + "@davidtwco", |
| 63 | + "@oli-obk" |
| 64 | + ], |
| 65 | + "mir-opt": [ |
| 66 | + "@nagisa", |
| 67 | + "@oli-obk", |
| 68 | + "@wesleywiser" |
| 69 | + ], |
| 70 | + "traits": [ |
| 71 | + "@jackh726", |
| 72 | + "@matthewjasper" |
| 73 | + ], |
| 74 | + "borrowck": [ |
| 75 | + "@davidtwco", |
| 76 | + "@matthewjasper", |
| 77 | + "@pnkfelix" |
35 | 78 | ]
|
36 | 79 | },
|
37 | 80 | "dirs": {
|
38 |
| - ".github/workflows": ["infra-ci"], |
39 |
| - "Cargo.lock": ["@Mark-Simulacrum"], |
40 |
| - "Cargo.toml": ["@Mark-Simulacrum"], |
41 |
| - "compiler": ["compiler-team", "compiler-team-contributors"], |
42 |
| - "compiler/rustc_apfloat": ["@eddyb"], |
43 |
| - "compiler/rustc_llvm": ["@cuviper"], |
44 |
| - "library/alloc": ["libs"], |
45 |
| - "library/core": ["libs", "@scottmcm"], |
46 |
| - "library/panic_abort": ["libs"], |
47 |
| - "library/panic_unwind": ["libs"], |
48 |
| - "library/proc_macro": ["@petrochenkov"], |
49 |
| - "library/std": ["libs"], |
50 |
| - "library/stdarch": ["libs"], |
51 |
| - "library/term": ["libs"], |
52 |
| - "library/test": ["libs"], |
53 |
| - "src/bootstrap": ["@Mark-Simulacrum"], |
54 |
| - "src/build_helper": ["@Mark-Simulacrum"], |
55 |
| - "src/ci": ["infra-ci"], |
56 |
| - "src/doc": ["doc"], |
57 |
| - "src/etc": ["@Mark-Simulacrum"], |
58 |
| - "src/librustdoc": ["rustdoc"], |
59 |
| - "src/llvm-project": ["@cuviper"], |
60 |
| - "src/stage0.txt": ["@Mark-Simulacrum"], |
61 |
| - "src/tools/cargo": ["@ehuss", "@joshtriplett"], |
62 |
| - "src/tools/compiletest": ["@Mark-Simulacrum", "@Centril"], |
63 |
| - "src/tools/linkchecker": ["@ehuss"], |
64 |
| - "src/tools/rust-installer": ["@Mark-Simulacrum"], |
65 |
| - "src/tools/rustbook": ["doc", "@ehuss"], |
66 |
| - "src/tools/rustdoc": ["rustdoc"], |
67 |
| - "src/tools/rustdoc-js": ["rustdoc"], |
68 |
| - "src/tools/rustdoc-js-std": ["rustdoc"], |
69 |
| - "src/tools/rustdoc-themes": ["rustdoc"], |
70 |
| - "src/tools/tidy": ["@Mark-Simulacrum"] |
| 81 | + ".github/workflows": ["infra-ci"], |
| 82 | + "Cargo.lock": ["@Mark-Simulacrum"], |
| 83 | + "Cargo.toml": ["@Mark-Simulacrum"], |
| 84 | + "compiler": ["compiler"], |
| 85 | + "compiler/rustc_apfloat": ["@eddyb"], |
| 86 | + "compiler/rustc_ast/": ["compiler", "parser"], |
| 87 | + "compiler/rustc_lexer": ["compiler", "lexer"], |
| 88 | + "compiler/rustc_llvm": ["@cuviper"], |
| 89 | + "compiler/rustc_middle/src/mir": ["compiler", "mir"], |
| 90 | + "compiler/rustc_middle/src/traits": ["compiler", "traits"], |
| 91 | + "compiler/rustc_mir/src/interpret": ["compiler", "mir"], |
| 92 | + "compiler/rustc_mir/src/transform": ["compiler", "mir-opt"], |
| 93 | + "compiler/rustc_mir_build/src/build": ["compiler", "mir"], |
| 94 | + "compiler/rustc_typeck": ["compiler", "typeck"], |
| 95 | + "compiler/rustc_traits": ["compiler", "traits"], |
| 96 | + "compiler/rustc_trait_selection": ["compiler", "traits"], |
| 97 | + "compiler/rustc_parse": ["compiler", "parser"], |
| 98 | + "compiler/rustc_parse/src/parse/lexer/": ["compiler", "lexer"], |
| 99 | + "compiler/rustc_query_impl": ["compiler", "query-system"], |
| 100 | + "compiler/rustc_query_system": ["compiler", "query-system"], |
| 101 | + "library/alloc": ["libs"], |
| 102 | + "library/core": ["libs", "@scottmcm"], |
| 103 | + "library/panic_abort": ["libs"], |
| 104 | + "library/panic_unwind": ["libs"], |
| 105 | + "library/proc_macro": ["@petrochenkov"], |
| 106 | + "library/std": ["libs"], |
| 107 | + "library/stdarch": ["libs"], |
| 108 | + "library/term": ["libs"], |
| 109 | + "library/test": ["libs"], |
| 110 | + "src/bootstrap": ["@Mark-Simulacrum"], |
| 111 | + "src/build_helper": ["@Mark-Simulacrum"], |
| 112 | + "src/ci": ["infra-ci"], |
| 113 | + "src/doc": ["doc"], |
| 114 | + "src/etc": ["@Mark-Simulacrum"], |
| 115 | + "src/librustdoc": ["rustdoc"], |
| 116 | + "src/llvm-project": ["@cuviper"], |
| 117 | + "src/stage0.txt": ["@Mark-Simulacrum"], |
| 118 | + "src/tools/cargo": ["@ehuss", "@joshtriplett"], |
| 119 | + "src/tools/compiletest": ["@Mark-Simulacrum"], |
| 120 | + "src/tools/linkchecker": ["@ehuss"], |
| 121 | + "src/tools/rust-installer": ["@Mark-Simulacrum"], |
| 122 | + "src/tools/rustbook": ["doc", "@ehuss"], |
| 123 | + "src/tools/rustdoc": ["rustdoc"], |
| 124 | + "src/tools/rustdoc-js": ["rustdoc"], |
| 125 | + "src/tools/rustdoc-js-std": ["rustdoc"], |
| 126 | + "src/tools/rustdoc-themes": ["rustdoc"], |
| 127 | + "src/tools/tidy": ["@Mark-Simulacrum"] |
71 | 128 | },
|
72 | 129 | "mentions": {
|
73 | 130 | "src/rustdoc-json-types": {
|
|
0 commit comments