rust/src
Nicholas Nethercote bcf0ec0191 Replace mk_foo calls with infer_foo where possible.
There are several `mk_foo`/`intern_foo` pairs, where the former takes an
iterator and the latter takes a slice. (This naming convention is bad,
but that's a fix for another PR.)

This commit changes several `mk_foo` occurrences into `intern_foo`,
avoiding the need for some `.iter()`/`.into_iter()` calls. Affected
cases:
- mk_type_list
- mk_tup
- mk_substs
- mk_const_list
2023-02-17 22:24:31 +11:00
..
bootstrap Rollup merge of #107905 - clubby789:x-free-args, r=albertlarsan68 2023-02-17 00:19:35 +01:00
ci Rollup merge of #107733 - Kobzol:opt-build-metrics, r=Mark-Simulacrum 2023-02-14 18:24:41 +01:00
doc Remove save-analysis. 2023-02-16 15:14:45 +11:00
etc Set rust-analyzer.check.invocationLocation to root 2023-02-08 22:53:50 +00:00
librustdoc Auto merge of #107753 - kylematsuda:type-of, r=BoxyUwU 2023-02-17 04:45:15 +00:00
llvm-project@477e7285b1 Pull in more LLVM commits 2023-01-20 07:48:59 -08:00
rustdoc-json-types Rustdoc-Json: Report discriminant on all kinds of enum variant. 2023-01-01 19:48:26 +00:00
tools Replace mk_foo calls with infer_foo where possible. 2023-02-17 22:24:31 +11:00
README.md Remove stale reference to the test suite location 2023-01-13 11:49:06 +00:00
stage0.json Download rustc component for rustfmt toolchain as well 2023-01-31 10:29:33 -05:00
version Bump to 1.69.0 2023-01-20 18:06:54 -05:00

This directory contains some source code for the Rust project, including:

  • The bootstrapping build system
  • Various submodules for tools, like cargo, tidy, etc.

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