rust/src
Alex Crichton 3da54fb036 rustbuild: Fix test "test rustdoc" invocation
Previously it would use the librustc output directory which would cause rustdoc
to get entirely recompiled, whereas the intention is that it uses the
already-compiled artifacts from building rustdoc itself, using the tool output
directory
2017-09-15 15:28:59 -07:00
..
bootstrap rustbuild: Fix test "test rustdoc" invocation 2017-09-15 15:28:59 -07:00
build_helper rustbuild: Replace create_dir_racy with create_dir_all 2017-08-07 16:04:46 +01:00
ci fix option for RUST_CONFIGURE_ARGS to be rust.ignore-git=false 2017-08-29 22:01:51 -07:00
doc Auto merge of #43949 - GuillaumeGomez:compile_fail_stable, r=alexcrichton 2017-09-15 08:05:39 +00:00
etc Rollup merge of #44351 - lu-zero:master, r=nikomatsakis 2017-09-06 18:28:03 -06:00
grammar
jemalloc@1f5a28755e Update jemalloc to 4.5.0 2017-08-16 22:06:05 +02:00
liballoc Rollup merge of #44572 - frewsxcv:frewsxcv-from-utf16-lossy, r=QuietMisdreavus 2017-09-14 22:32:52 -04:00
liballoc_jemalloc Autodetect the type of allocator crate used 2017-09-10 19:59:42 +02:00
liballoc_system Autodetect the type of allocator crate used 2017-09-10 19:59:42 +02:00
libarena *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
libbacktrace Fix missing line numbers on i686. 2017-09-05 08:41:43 +08:00
libcollections *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
libcompiler_builtins@38ffaf97aa Update the libcompiler_builins submodule 2017-09-07 09:08:09 +02:00
libcore Rollup merge of #44552 - durka:patch-42, r=alexcrichton 2017-09-14 22:32:48 -04:00
libfmt_macros *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
libgetopts *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
libgraphviz *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
liblibc@95848f9622 Update liblibc submodule to include latest uclibc changes 2017-09-08 14:36:56 +02:00
libpanic_abort *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
libpanic_unwind Add missing dependency for Windows 2017-08-27 19:02:24 +09:00
libproc_macro Rollup merge of #44125 - SergioBenitez:master, r=nrc 2017-08-30 11:11:12 -05:00
libprofiler_builtins update gcc crate 2017-09-02 21:51:18 +02:00
librand *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
librustc Rollup merge of #44569 - est31:master, r=estebank 2017-09-14 22:32:51 -04:00
librustc_allocator Make fields of Span private 2017-08-30 01:38:54 +03:00
librustc_apfloat *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
librustc_asan
librustc_back Add TargetOptions::min_global_align, with s390x at 16-bit 2017-09-08 14:49:51 -07:00
librustc_bitflags *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
librustc_borrowck Use NodeId/HirId instead of DefId for local variables. 2017-09-08 22:00:59 +03:00
librustc_const_eval rustc: evaluate fixed-length array length expressions lazily. 2017-09-11 08:41:16 +03:00
librustc_const_math rustc: replace usize with u64 and ConstUsize. 2017-09-11 08:41:15 +03:00
librustc_data_structures Analyse storage liveness and preserve it during generator transformation 2017-09-13 23:28:10 +02:00
librustc_driver rustc: Remove Session::dep_graph 2017-09-14 10:40:50 -07:00
librustc_errors Fix mispositioned error indicators 2017-09-07 10:26:27 +02:00
librustc_incremental rustc: Remove Session::dep_graph 2017-09-14 10:40:50 -07:00
librustc_lint Auto merge of #44275 - eddyb:deferred-ctfe, r=nikomatsakis 2017-09-12 04:14:07 +00:00
librustc_llvm disable gcc warnings 2017-09-05 18:46:26 +02:00
librustc_lsan
librustc_metadata Auto merge of #44420 - alexcrichton:private-cstore, r=michaelwoerister 2017-09-13 05:32:00 +00:00
librustc_mir Fix a bug where StorageIgnored had an incorrect buffer length 2017-09-13 23:28:11 +02:00
librustc_msan
librustc_passes Auto merge of #44275 - eddyb:deferred-ctfe, r=nikomatsakis 2017-09-12 04:14:07 +00:00
librustc_platform_intrinsics Rollup merge of #44351 - lu-zero:master, r=nikomatsakis 2017-09-06 18:28:03 -06:00
librustc_plugin *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
librustc_privacy rustc: Remove HirId from queries 2017-09-11 07:53:48 -07:00
librustc_resolve Remove the cstore reference from Session in order to prepare encapsulating CrateStore access in tcx. 2017-09-12 07:19:06 -07:00
librustc_save_analysis Use NodeId/HirId instead of DefId for local variables. 2017-09-08 22:00:59 +03:00
librustc_trans rustc: Remove Session::dep_graph 2017-09-14 10:40:50 -07:00
librustc_trans_utils *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
librustc_tsan Move unused-extern-crate to late pass 2017-08-27 19:02:24 +09:00
librustc_typeck Remove deprecated lang items 2017-09-12 17:04:26 -03:00
librustdoc Auto merge of #43949 - GuillaumeGomez:compile_fail_stable, r=alexcrichton 2017-09-15 08:05:39 +00:00
libserialize *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
libstd Rollup merge of #44563 - budziq:stablilize_tcpstream_connect_timeout, r=alexcrichton 2017-09-14 22:32:50 -04:00
libstd_unicode impl Debug for SplitWhitespace. 2017-09-03 19:13:01 -04:00
libsyntax Auto merge of #44484 - tirr-c:issue-44332, r=petrochenkov 2017-09-14 00:28:27 +00:00
libsyntax_ext Use rvalue promotion to 'static instead of static items. 2017-09-10 11:20:27 +03:00
libsyntax_pos Add impl From<Vec<Span>> for MultiSpan. 2017-09-09 02:09:10 -07:00
libterm *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
libtest Platform gate libc in libtest 2017-08-27 19:02:24 +09:00
libunwind *: remove crate_{name,type} attributes 2017-08-25 16:18:21 -04:00
llvm@d9e7d2696e
rt
rtstartup
rustc Make librustc_driver work without librustc_trans 2017-08-11 10:38:31 +02:00
rustllvm Fix covered-switch-default warnings in PassWrapper 2017-08-08 16:17:33 +08:00
test Rollup merge of #44569 - est31:master, r=estebank 2017-09-14 22:32:51 -04:00
tools Rollup merge of #44430 - steveklabnik:update-mdbook, r=alexcrichton 2017-09-14 22:32:37 -04:00
Cargo.lock Rollup merge of #44430 - steveklabnik:update-mdbook, r=alexcrichton 2017-09-14 22:32:37 -04:00
Cargo.toml Update Cargo to 0.23.0 and our lockfile 2017-08-31 07:02:50 -07:00
stage0.txt Bump to 1.22.0 2017-08-31 06:58:58 -07:00