rust/src
Nicholas Nethercote f405ce86c2 Minimize pub usage in source_map.rs.
Most notably, this commit changes the `pub use crate::*;` in that file
to `use crate::*;`. This requires a lot of `use` items in other crates
to be adjusted, because everything defined within `rustc_span::*` was
also available via `rustc_span::source_map::*`, which is bizarre.

The commit also removes `SourceMap::span_to_relative_line_string`, which
is unused.
2023-11-02 19:35:00 +11:00
..
bootstrap Rollup merge of #117383 - onur-ozkan:fix-x-install, r=albertlarsan68 2023-10-30 17:33:18 +01:00
ci Auto merge of #117267 - RalfJung:miri-tests, r=Mark-Simulacrum 2023-10-30 15:38:24 +00:00
doc Add support for mipsel-unknown-netbsd, 32-bit LE mips. 2023-10-29 12:39:30 +00:00
etc Rollup merge of #117043 - onur-ozkan:skip-stage0-validation, r=Mark-Simulacrum 2023-10-29 12:35:00 +01:00
librustdoc Minimize pub usage in source_map.rs. 2023-11-02 19:35:00 +11:00
llvm-project@fef3d7b14e Update to LLVM 17.0.4 2023-10-31 09:30:13 +01:00
rustdoc-json-types rustdoc-json: Rename typedef to type alias 2023-08-21 14:02:34 -07:00
tools Minimize pub usage in source_map.rs. 2023-11-02 19:35:00 +11:00
README.md Remove stale reference to the test suite location 2023-01-13 11:49:06 +00:00
stage0.json Bump to latest beta 2023-10-08 19:57:43 -04:00
version Bump to 1.75.0 2023-09-30 19:09:22 -04: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.