| Age | Commit message (Expand) | Author | Lines |
| 2023-01-28 | Rollup merge of #107357 - GuillaumeGomez:fix-infinite-loop-in-rustdoc-get_all... | Yuki Okushi | -1/+3 |
| 2023-01-27 | Auto merge of #107055 - kylematsuda:eb-fn-sig, r=lcnr | bors | -4/+4 |
| 2023-01-27 | Fix handling of items inside a `doc(hidden)` block | Guillaume Gomez | -10/+6 |
| 2023-01-27 | Fix infinite loop in rustdoc get_all_import_attributes function | Guillaume Gomez | -1/+3 |
| 2023-01-27 | Auto merge of #107054 - petrochenkov:effvisdoc3, r=GuillaumeGomez | bors | -5/+0 |
| 2023-01-26 | change fn_sig query to use EarlyBinder; remove bound_fn_sig query; add EarlyB... | Kyle Matsuda | -4/+4 |
| 2023-01-26 | replace usages of fn_sig query with bound_fn_sig | Kyle Matsuda | -4/+4 |
| 2023-01-26 | rustdoc: Stop using `HirId`s | Vadim Petrochenkov | -33/+19 |
| 2023-01-25 | rustdoc: Collect rustdoc-reachable items during early doc link resolution | Vadim Petrochenkov | -5/+0 |
| 2023-01-23 | Auto merge of #107136 - petrochenkov:dochidden, r=cjgillot | bors | -8/+1 |
| 2023-01-22 | rustdoc: Use `DefId(Map,Set)` instead of `FxHash(Map,Set)` | Vadim Petrochenkov | -15/+11 |
| 2023-01-21 | rustc_metadata: Encode `doc(hidden)` flag to metadata | Vadim Petrochenkov | -8/+1 |
| 2023-01-17 | rustdoc: Fix glob import inlining | Vadim Petrochenkov | -4/+21 |
| 2023-01-15 | rustdoc: simplify some & ref erences | Matthias Krüger | -10/+8 |
| 2023-01-14 | change impl_trait_ref query to return EarlyBinder; remove bound_impl_trait_re... | Kyle Matsuda | -3/+3 |
| 2023-01-14 | change usages of impl_trait_ref to bound_impl_trait_ref | Kyle Matsuda | -2/+2 |
| 2023-01-14 | change const_param_default query to return EarlyBinder; remove bound_const_pa... | Kyle Matsuda | -1/+1 |
| 2023-01-14 | change usages of const_param_default query to bound_const_param_default | Kyle Matsuda | -1/+3 |
| 2023-01-12 | Fix rendering 'const' for intrinsics | clubby789 | -2/+10 |
| 2023-01-10 | Remove unneeded ItemId::Primitive variant | Guillaume Gomez | -10/+6 |
| 2023-01-06 | rustdoc: Strip imports of items which are `#[doc(hidden)]` | Nixon Enraght-Moony | -0/+11 |
| 2023-01-03 | clean: Remove `ctor_kind` from `VariantStruct`. | Nixon Enraght-Moony | -3/+0 |
| 2023-01-02 | Rollup merge of #106366 - GuillaumeGomez:fix-rustdoc-ice-typedef-type-mismatc... | Michael Goulet | -1/+1 |
| 2023-01-02 | Fix rustdoc ICE on bad typedef with mismatching types | Guillaume Gomez | -1/+1 |
| 2023-01-01 | clean: Always store enum disriminant. | Nixon Enraght-Moony | -23/+43 |
| 2022-12-29 | Auto merge of #106266 - matthiaskrgr:rollup-cxrdbzy, r=matthiaskrgr | bors | -1/+1 |
| 2022-12-29 | Fix index out of bounds issues in rustdoc | yukang | -1/+1 |
| 2022-12-28 | Rename `Rptr` to `Ref` in AST and HIR | Nilstrieb | -1/+1 |
| 2022-12-20 | Add readable rustdoc display for tvOS and watchOS | Taiki Endo | -0/+2 |
| 2022-12-15 | Rollup merge of #105743 - nnethercote:SimplifiedType-cleanups, r=lcnr | Matthias Krüger | -2/+2 |
| 2022-12-15 | Merge `SimplifiedTypeGen<D>` into `SimplifiedType`. | Nicholas Nethercote | -2/+2 |
| 2022-12-14 | Ensure no one constructs `AliasTy`s themselves | Oli Scherer | -1/+1 |
| 2022-12-13 | Combine projection and opaque into alias | Michael Goulet | -3/+5 |
| 2022-12-13 | squash OpaqueTy and ProjectionTy into AliasTy | Michael Goulet | -3/+3 |
| 2022-12-13 | ProjectionTy.item_def_id -> ProjectionTy.def_id | Michael Goulet | -4/+4 |
| 2022-12-13 | Use ty::OpaqueTy everywhere | Michael Goulet | -1/+1 |
| 2022-12-12 | Avoid trying to normalize unnormalizable types | Oli Scherer | -2/+6 |
| 2022-12-12 | Round 3: require binders for substs | Oli Scherer | -28/+49 |
| 2022-12-12 | Round 2: make clean_middle_ty take a binder | Oli Scherer | -56/+92 |
| 2022-12-12 | Round 1: add some binders (fails due to losing bound vars and then rebinding ... | Oli Scherer | -26/+26 |
| 2022-12-12 | Auto merge of #105160 - nnethercote:rm-Lit-token_lit, r=petrochenkov | bors | -14/+20 |
| 2022-12-05 | Remove `mk_name_value_item{,_str}`. | Nicholas Nethercote | -14/+20 |
| 2022-12-02 | Merge generics and where predicates and prevent duplicates in where predicates | Guillaume Gomez | -33/+91 |
| 2022-12-01 | rustc_hir: Change representation of import paths to support multiple resolutions | Vadim Petrochenkov | -4/+27 |
| 2022-11-30 | Auto merge of #104905 - compiler-errors:normalization-changes, r=spastorino | bors | -2/+2 |
| 2022-11-28 | partially_normalize_... -> At::normalize | Michael Goulet | -1/+1 |
| 2022-11-28 | Rename At::normalize to At::query_normalize | Michael Goulet | -1/+1 |
| 2022-11-28 | Rollup merge of #104804 - nnethercote:MetaItemLit, r=petrochenkov | Matthias Krüger | -3/+3 |
| 2022-11-28 | Rollup merge of #104732 - WaffleLapkin:from_def_idn't, r=compiler-errors | Dylan DPC | -1/+1 |
| 2022-11-28 | Rename `NestedMetaItem::[Ll]iteral` as `NestedMetaItem::[Ll]it`. | Nicholas Nethercote | -3/+3 |