rust/src
bors 2953edc7b7 Auto merge of #98475 - notriddle:notriddle/index-fn-signatures, r=GuillaumeGomez
rustdoc: reference function signature types from the `p` array

This reduces the size of the function signature index, because it's common to have many functions that operate on the same types.

    $ wc -c search-index-old.js search-index-new.js
    5224374 search-index-old.js
    3932314 search-index-new.js

By my math, this reduces the uncompressed size of the search index by 32%.
On compressed signatures, the wins are less drastic, a mere 8%:

    $ wc -c search-index-old.js.gz search-index-new.js.gz
    404532 search-index-old.js.gz
    371635 search-index-new.js.gz
2022-06-28 21:40:10 +00:00
..
bootstrap Fix builds on Windows (closes #98546) 2022-06-26 23:27:44 +01:00
ci Rollup merge of #98422 - GuillaumeGomez:browser-ui-test-update, r=Dylan-DPC 2022-06-23 14:39:19 -07:00
doc Rollup merge of #98401 - ehuss:extern-tracking, r=Dylan-DPC 2022-06-25 15:14:12 +02:00
etc Rollup merge of #95446 - notseanray:master, r=Mark-Simulacrum 2022-06-22 15:16:08 +09:00
librustdoc Auto merge of #98475 - notriddle:notriddle/index-fn-signatures, r=GuillaumeGomez 2022-06-28 21:40:10 +00:00
llvm-project@d1ddc34c4b Update LLVM submodule 2022-06-25 09:36:03 +02:00
rustdoc-json-types
test Auto merge of #98632 - matthiaskrgr:rollup-peg868d, r=matthiaskrgr 2022-06-28 18:36:42 +00:00
tools Rollup merge of #98606 - lnicola:rust-analyzer-2022-06-28, r=lnicola 2022-06-28 18:34:30 +02:00
README.md
stage0.json
version bump version to 1.64.0 2022-06-24 17:27:24 +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.