rust/src
bors 1dceaddfbe Auto merge of #54946 - estebank:iterator, r=varkor
Add filtering option to `rustc_on_unimplemented` and reword `Iterator` E0277 errors

 - Add more targetting filters for arrays to `rustc_on_unimplemented` (Fix #53766)
 - Detect one element array of `Range` type, which is potentially a typo:
   `for _ in [0..10] {}` where iterating between `0` and `10` was intended.
   (Fix #23141)
 - Suggest `.bytes()` and `.chars()` for `String`.
 - Suggest borrowing or `.iter()` on arrays (Fix #36391)
 - Suggest using range literal when iterating on integers (Fix #34353)
 - Do not suggest `.iter()` by default (Fix #50773, fix #46806)
 - Add regression test (Fix #22872)
2018-10-17 11:47:53 +00:00
..
bootstrap Auto merge of #55051 - matthiaskrgr:dist_msg, r=Mark-Simulacrum 2018-10-14 11:56:09 +00:00
build_helper A handful of random string-related improvements 2018-10-10 10:39:18 +02:00
ci
dlmalloc@c99638dc2e
doc Unused result warning: "X which must" ↦ "X that must" 2018-10-14 18:25:30 +01:00
etc Rollup merge of #54989 - Munksgaard:fix-htmldocck-typos, r=tmandry 2018-10-12 22:04:19 +08:00
grammar
jemalloc@1f5a28755e
liballoc Auto merge of #55049 - tshepang:fix, r=withoutboats 2018-10-14 06:40:17 +00:00
liballoc_jemalloc
liballoc_system std: Synchronize global allocator on wasm32 2018-10-09 23:35:45 -07:00
libarena
libbacktrace@f4d02bbdbf
libcompiler_builtins@0703bfa725
libcore Auto merge of #54946 - estebank:iterator, r=varkor 2018-10-17 11:47:53 +00:00
libfmt_macros
libgraphviz Remove graphviz::IntoCow 2018-10-05 14:16:10 +02:00
liblibc@1844a772b6
libpanic_abort
libpanic_unwind
libproc_macro
libprofiler_builtins
librustc Auto merge of #54946 - estebank:iterator, r=varkor 2018-10-17 11:47:53 +00:00
librustc_allocator
librustc_apfloat
librustc_asan
librustc_borrowck Auto merge of #54847 - ljedrz:kill_graphviz_intocow, r=pnkfelix 2018-10-08 06:50:25 +00:00
librustc_codegen_llvm Auto merge of #55023 - euclio:llvm-error-handler, r=cuviper 2018-10-16 02:06:26 +00:00
librustc_codegen_utils
librustc_cratesio_shim
librustc_data_structures Added graphviz visualization for obligation forests. 2018-10-14 16:12:07 +01:00
librustc_driver Auto merge of #54671 - petrochenkov:extpre2015, r=nikomatsakis 2018-10-17 01:59:28 +00:00
librustc_errors A handful of random string-related improvements 2018-10-10 10:39:18 +02:00
librustc_fs_util
librustc_incremental Remove graphviz::IntoCow 2018-10-05 14:16:10 +02:00
librustc_lint Auto merge of #54251 - varkor:silence-bad_style, r=Manishearth 2018-10-16 18:01:41 +00:00
librustc_llvm
librustc_lsan
librustc_metadata
librustc_metadata_utils
librustc_mir Auto merge of #54941 - pnkfelix:issue-21232-reject-partial-reinit, r=nikomatsakis 2018-10-17 09:13:51 +00:00
librustc_msan
librustc_passes
librustc_platform_intrinsics
librustc_plugin
librustc_privacy Check the invariant for principal inside the method 2018-10-13 11:32:49 +02:00
librustc_resolve resolve: Scale back hard-coded extern prelude additions 2018-10-13 21:35:19 +03:00
librustc_save_analysis
librustc_target rustc: Allow targets to specify SIMD args are by-val 2018-10-12 17:04:31 -07:00
librustc_traits Auto merge of #55095 - Manishearth:rollup, r=Manishearth 2018-10-15 19:50:50 +00:00
librustc_tsan
librustc_typeck Auto merge of #54671 - petrochenkov:extpre2015, r=nikomatsakis 2018-10-17 01:59:28 +00:00
librustdoc Auto merge of #54939 - pnkfelix:issue-54478-dont-prefer-dynamic-in-doc-tests, r=QuietMisdreavus 2018-10-17 06:42:15 +00:00
libserialize
libstd Fix incorrect link in println! documentation 2018-10-14 08:14:21 -04:00
libsyntax Rollup merge of #55025 - ehuss:missing-lifetime-err-msg, r=petrochenkov 2018-10-15 10:15:15 -07:00
libsyntax_ext
libsyntax_pos
libterm
libtest
libunwind
llvm@caddcd9b9d
llvm-emscripten@2717444753
rtstartup
rustc
rustllvm exit with status code 101 on fatal LLVM error 2018-10-12 17:29:40 -04:00
stdsimd@307650500d Update stdsimd submodule 2018-10-09 14:21:42 -07:00
test Auto merge of #54946 - estebank:iterator, r=varkor 2018-10-17 11:47:53 +00:00
tools Auto merge of #55084 - matthiaskrgr:clippy, r=oli-obk 2018-10-15 10:31:48 +00:00
.gitignore
Cargo.lock Added graphviz visualization for obligation forests. 2018-10-14 16:12:07 +01:00
Cargo.toml
README.md
stage0.txt bump bootstrap compiler to rustc beta 2018-10-13 2018-10-14 00:52:47 +02:00

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

  • rustc and its tests
  • libstd
  • Various submodules for tools, like rustdoc, rls, etc.

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

Their is also useful content in the following READMEs, which are gradually being moved over to the guide: