Files
rust/src
Guillaume Gomez 79f02e4b33 Rollup merge of #56319 - RalfJung:async-mutable-ref, r=cramertj
fix futures creating aliasing mutable and shared ref

Fixes the problem described in https://github.com/solson/miri/issues/532#issuecomment-442552764: `set_task_waker` takes a shared reference and puts a copy into the TLS (in a `NonNull`), but `get_task_waker` gets it back out as a mutable reference. That violates "mutable references must not alias anything"!
2018-11-29 13:10:50 +01:00
..
2018-11-20 15:56:58 -08:00
2018-11-11 20:52:36 +07:00
2018-11-26 15:03:13 -06:00
2018-11-26 15:03:13 -06:00
2018-11-27 13:13:11 -06:00
2018-11-26 15:03:13 -06:00
2018-11-26 15:03:13 -06:00
2018-11-25 20:27:18 -08:00
2018-11-02 14:58:53 +01:00
2018-11-26 15:03:13 -06:00
2018-10-31 11:53:50 -07: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.

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