rust/src
Dylan DPC ff91155d0a
Rollup merge of #96105 - jyn514:less-verbose-logging, r=Mark-Simulacrum
Make the debug output for `TargetSelection` less verbose

In particular, this makes the output of `x build -vv` easier to read.
Before:

```
    c Sysroot { compiler: Compiler { stage: 0, host: TargetSelection { triple: "x86_64-unknown-linux-gnu", file: None } } }
```

After:
```
    c Sysroot { compiler: Compiler { stage: 0, host: x86_64-unknown-linux-gnu } }
```
2022-04-17 00:07:25 +02:00
..
bootstrap Rollup merge of #96105 - jyn514:less-verbose-logging, r=Mark-Simulacrum 2022-04-17 00:07:25 +02:00
ci update: actions/checkout@v2 to actions/checkout@v3 2022-04-14 13:20:39 -07:00
doc Rollup merge of #96059 - euclio:doc-cfg, r=manishearth,guillaumegomez 2022-04-16 14:26:00 +02:00
etc htmldocck: Compare HTML tree instead of plain text html 2022-04-16 18:32:07 +02:00
librustdoc Rollup merge of #96118 - GuillaumeGomez:cleanup-def-id-item-id, r=notriddle 2022-04-16 19:42:07 +02:00
llvm-project@9168e236c5 Update to LLVM 14.0.0 final 2022-03-23 11:42:13 -07:00
rustdoc-json-types rustdoc-json-types: implementors -> implementations 2022-03-14 00:05:11 +00:00
test Rollup merge of #95346 - Aaron1011:stablize-const-extern-fn, r=pnkfelix 2022-04-17 00:07:23 +02:00
tools Rollup merge of #96088 - ehuss:update-mdbook, r=Mark-Simulacrum 2022-04-16 19:42:06 +02:00
README.md
stage0.json bump stage0 to the latest beta 2022-04-05 22:24:32 +02:00
version bump version to 1.62.0 2022-04-04 09:21:03 +02:00

This directory contains the source code of the rust project, including:

  • The test suite
  • The bootstrapping build system
  • Various submodules for tools, like rustdoc, rls, etc.

For more information on how various parts of the compiler work, see the rustc dev guide.