rust/src
Michael Howell b1178afcb4
Rollup merge of #101911 - notriddle:notriddle/source-content, r=GuillaumeGomez
rustdoc: remove no-op CSS on `.source .content`

# `margin-left: 0`

This rule originated in 7669f04fb0, to override the default, massive left margin that content used to accommodate the sidebar:

7669f04fb0/src/librustdoc/html/static/main.css (L307-L309)

This massive left margin doesn't exist any more. It was replaced with a flexbox-based sidebar layout in 135281ed15.

# `max-width: none`

This rule originated in 7669f04fb0, to override the default, limited line-width that makes sense for prose, but doesn't make sense for code (which typically uses hard-wrapped lines):

7669f04fb0/src/librustdoc/html/static/main.css (L153)

This line width limiter isn't applied to the `<div class="content">` node any more. It's been moved to a separate wrapper `<div>` that used to be called `main-inner` (in 135281ed15) but is now called `width-limiter` (since d7528e2157).
2022-09-16 20:37:17 -07:00
..
bootstrap Rollup merge of #101809 - aDotInTheVoid:jsondoclint, r=GuillaumeGomez 2022-09-16 11:17:02 +05:30
ci Update browser-ui-test version to 0.10.0 2022-09-10 17:50:47 +02:00
doc Rollup merge of #101340 - andrewpollack:fuchsia-zxdb-docs, r=tmandry 2022-09-16 20:37:14 -07:00
etc Remove check_missing_items.py 2022-09-14 16:14:15 +01:00
librustdoc Rollup merge of #101911 - notriddle:notriddle/source-content, r=GuillaumeGomez 2022-09-16 20:37:17 -07:00
llvm-project@670e5f673a Update LLVM submodule 2022-09-02 10:18:12 +02:00
rustdoc-json-types Rustdoc-Json: Fix Type docs. 2022-09-12 14:56:04 +01:00
test Rollup merge of #101741 - andrewpollack:add-needs-unwind-ui-tests, r=tmandry 2022-09-16 20:37:15 -07:00
tools Rollup merge of #101809 - aDotInTheVoid:jsondoclint, r=GuillaumeGomez 2022-09-16 11:17:02 +05:30
README.md Sunset RLS 2022-08-27 21:36:08 -07:00
stage0.json Bump stage0 2022-08-29 19:30:11 +02:00
version Bump to 1.65.0 2022-08-05 11:32:46 -04:00

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

  • The test suite
  • The bootstrapping build system
  • Various submodules for tools, like cargo, miri, etc.

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