rust/src
Alex Crichton acf3ddb5ad std: Add {read,write}_vectored for more types
This commit implements the `{read,write}_vectored` methods on more types
in the standard library, namely:

* `std::fs::File`
* `std::process::ChildStd{in,out,err}`
* `std::io::Std{in,out,err}`
* `std::io::Std{in,out,err}Lock`
* `std::io::Std{in,out,err}Raw`

Where supported the OS implementations hook up to native support,
otherwise it falls back to the already-defaulted implementation.
2019-04-10 12:51:25 -07:00
..
bootstrap Revert "Auto merge of #57842 - gnzlbg:extract_libtest, r=gnzlbg" 2019-04-07 03:16:31 -04:00
build_helper rustc: doc comments 2019-02-10 23:42:32 +00:00
ci Auto merge of #59770 - pietroalbini:pin-android-emulator, r=kennytm 2019-04-07 12:33:01 +00:00
doc Update books 2019-04-06 10:06:51 -07:00
etc rust-lldb: fix crash when printing empty string 2019-03-06 12:28:38 -05:00
grammar
liballoc Auto merge of #59119 - cramertj:cx-back, r=withoutboats 2019-04-07 09:48:12 +00:00
libarena Deny internal lints on non conflicting crates 2019-04-03 18:24:21 +02:00
libcore Auto merge of #59119 - cramertj:cx-back, r=withoutboats 2019-04-07 09:48:12 +00:00
libfmt_macros Deny internal lints on two more crates 2019-04-03 19:18:07 +02:00
libgraphviz Auto merge of #58051 - SimonSapin:str_escape, r=alexcrichton 2019-02-12 23:30:16 +00:00
libpanic_abort SGX target: fix panic = abort 2019-02-14 12:39:54 +05:30
libpanic_unwind libpanic_unwind => 2018: remove unused extern crate. 2019-02-13 18:09:09 +01:00
libproc_macro Use for_each to extend collections 2019-04-05 14:51:07 -07:00
libprofiler_builtins Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
librustc Auto merge of #58739 - matthewjasper:more-restrictive-tpb, r=pnkfelix 2019-04-07 00:57:13 +00:00
librustc_allocator Deny internal lints on non conflicting crates 2019-04-03 18:24:21 +02:00
librustc_apfloat Stabilize TryFrom and TryInto 2019-02-13 18:00:18 +01:00
librustc_asan Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
librustc_borrowck Deny internal lints on non conflicting crates 2019-04-03 18:24:21 +02:00
librustc_codegen_llvm Auto merge of #58739 - matthewjasper:more-restrictive-tpb, r=pnkfelix 2019-04-07 00:57:13 +00:00
librustc_codegen_ssa Rollup merge of #59639 - cuviper:ignore-uninhabited, r=eddyb 2019-04-04 15:09:04 +02:00
librustc_codegen_utils Deny internal lints on non conflicting crates 2019-04-03 18:24:21 +02:00
librustc_cratesio_shim librustc_cratesio_shim => 2018 2019-02-08 20:55:12 +09:00
librustc_data_structures Update ena to version 0.13.0 2019-03-27 09:44:55 +00:00
librustc_driver Deny internal lints on non conflicting crates 2019-04-03 18:24:21 +02:00
librustc_errors Deny internal lints on non conflicting crates 2019-04-03 18:24:21 +02:00
librustc_fs_util rustc: doc comments 2019-02-10 23:42:32 +00:00
librustc_incremental Auto merge of #59517 - Zoxc:new-queries, r=oli-obk 2019-04-04 08:26:18 +00:00
librustc_interface Deny internal lints on librustc_interface 2019-04-03 18:24:21 +02:00
librustc_lint add mutable_borrow_reservation_conflict future-incompatibility lint. 2019-04-04 18:50:02 +01:00
librustc_llvm Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
librustc_lsan Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
librustc_macros Allow unused query arguments 2019-03-30 18:43:25 +01:00
librustc_metadata Deny internal lints on non conflicting crates 2019-04-03 18:24:21 +02:00
librustc_mir Update comment 2019-04-07 08:02:48 +02:00
librustc_msan Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
librustc_passes Deny internal lints on non conflicting crates 2019-04-03 18:24:21 +02:00
librustc_plugin Make meta-item API compatible with LocalInternedString::get soundness fix 2019-03-17 17:04:58 +03:00
librustc_privacy Deny internal lints on non conflicting crates 2019-04-03 18:24:21 +02:00
librustc_resolve Deny internal lints on non conflicting crates 2019-04-03 18:24:21 +02:00
librustc_save_analysis Deny internal lints on non conflicting crates 2019-04-03 18:24:21 +02:00
librustc_target Rollup merge of #59624 - jethrogb:jb/sgx-unwind-syms, r=alexcrichton 2019-04-06 00:14:43 +02:00
librustc_traits Deny internal lints on non conflicting crates 2019-04-03 18:24:21 +02:00
librustc_tsan Revert removed #![feature(nll)] 2019-02-10 16:13:30 +09:00
librustc_typeck Rollup merge of #58894 - GuillaumeGomez:invalid-lifetime-bounds, r=estebank 2019-04-06 00:14:40 +02:00
librustdoc Rollup merge of #58894 - GuillaumeGomez:invalid-lifetime-bounds, r=estebank 2019-04-06 00:14:40 +02:00
libserialize Auto merge of #58341 - alexreg:cosmetic-2-doc-comments, r=steveklabnik 2019-02-12 19:09:24 +00:00
libstd std: Add {read,write}_vectored for more types 2019-04-10 12:51:25 -07:00
libsyntax Rollup merge of #59687 - matklad:shebang, r=petrochenkov 2019-04-05 12:46:49 +02:00
libsyntax_ext Fix cases of conflicting two-phase borrows 2019-04-04 18:47:10 +01:00
libsyntax_pos Deny internal lints on non conflicting crates 2019-04-03 18:24:21 +02:00
libterm Revert "Auto merge of #57842 - gnzlbg:extract_libtest, r=gnzlbg" 2019-04-07 03:16:31 -04:00
libtest Revert "Auto merge of #57842 - gnzlbg:extract_libtest, r=gnzlbg" 2019-04-07 03:16:31 -04:00
libunwind Support using LLVM's libunwind as the unwinder implementation 2019-04-03 11:21:40 -07:00
llvm-emscripten@7f23313edf
llvm-project@84abffda0e Support using LLVM's libunwind as the unwinder implementation 2019-04-03 11:21:40 -07:00
rtstartup
rustc Update jemalloc-sys to version 0.3.0 2019-03-26 11:03:19 +01:00
rustllvm Auto merge of #59710 - alexcrichton:llvm-9-compat, r=sanxiyn 2019-04-06 13:14:23 +00:00
stdsimd@2792b45c97 update stdsimd 2019-03-30 12:57:23 +01:00
test Auto merge of #59724 - oli-obk:const_arg_ice, r=eddyb 2019-04-08 01:18:12 +00:00
tools Update miri 2019-04-06 21:50:18 +01:00
.gitignore
README.md
stage0.txt bump bootstrap => 2019-03-20 2019-03-26 09:53:47 +01: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: