rust/src
bors 3fa2b56537 auto merge of #17851 : brson/rust/rustup, r=alexcrichton
Just to have it somewhere to point to. Updating it will not
automatically update the one on static.rust-lang.org.
2014-10-28 17:47:01 +00:00
..
compiler-rt@62a4ca6055
compiletest debuginfo: Set RUST_TEST_TASKS to 1 again for LLDB tests 2014-10-26 18:09:06 +01:00
doc auto merge of #18273 : gamazeps/rust/issue18218, r=steveklabnik 2014-10-28 14:36:54 +00:00
driver
etc auto merge of #17851 : brson/rust/rustup, r=alexcrichton 2014-10-28 17:47:01 +00:00
grammar
jemalloc@b001609960
liballoc alloc: Make deriving more friendly with Arc 2014-10-27 22:45:44 -07:00
libarena Use the same html_root_url for all docs 2014-10-09 10:50:13 -07:00
libbacktrace
libcollections auto merge of #18254 : areski/rust/pr-fix-vec-doc-example, r=alexcrichton 2014-10-28 10:11:51 +00:00
libcore rollup merge of #18316 : thestinger/raw 2014-10-27 15:12:29 -07:00
libcoretest Add as_unsafe_cell() for Cell and RefCell 2014-10-24 14:15:50 -07:00
libflate Use the same html_root_url for all docs 2014-10-09 10:50:13 -07:00
libfmt_macros
libgetopts Add a lint for not using field pattern shorthands 2014-10-24 15:44:18 +13:00
libgraphviz Remove a large amount of deprecated functionality 2014-10-19 12:59:40 -07:00
libgreen auto merge of #16388 : Zoxc/rust/stmesg, r=alexcrichton 2014-10-24 17:32:04 +00:00
liblibc auto merge of #17896 : mahkoh/rust/intmax, r=alexcrichton 2014-10-24 03:22:29 +00:00
liblog Register new snapshots 2014-10-10 22:09:49 -07:00
libnative Print stack overflow messages for Windows, Linux and OS X 2014-10-24 14:36:29 +02:00
librand Fix spelling mistakes in comments. 2014-10-25 23:11:17 -04:00
librbml Use the same html_root_url for all docs 2014-10-09 10:50:13 -07:00
libregex auto merge of #17853 : alexcrichton/rust/issue-17718, r=pcwalton 2014-10-10 00:07:08 +00:00
libregex_macros auto merge of #17853 : alexcrichton/rust/issue-17718, r=pcwalton 2014-10-10 00:07:08 +00:00
librlibc Remove libdebug and update tests. 2014-10-16 11:15:34 -04:00
librustc Avoid O(n^2) performance by reconsidering the full set of obligations only when we are about to report an error (#18208). I found it is still important to consider the full set in order to make tests like let x: Vec<_> = obligations.iter().collect() work. 2014-10-28 08:18:21 -04:00
librustc_back librustc: Stop generating visit glue and remove from TyDesc. 2014-10-16 11:15:36 -04:00
librustc_llvm Use the correct LLVM integer sizes 2014-10-15 14:17:34 +03:00
librustdoc Add a lint for not using field pattern shorthands 2014-10-24 15:44:18 +13:00
librustrt get rid of libc_heap::{malloc_raw, realloc_raw} 2014-10-25 14:12:19 -04:00
libserialize alloc: Make deriving more friendly with Arc 2014-10-27 22:45:44 -07:00
libstd Test fixes and rebase conflicts from rollup 2014-10-27 15:12:48 -07:00
libsync Remove a large amount of deprecated functionality 2014-10-19 12:59:40 -07:00
libsyntax rollup merge of #18362 : kevinmehall/pprint-struct-pat-shorthand 2014-10-27 15:12:47 -07:00
libterm Fix bug #17982. 2014-10-25 17:37:41 -07:00
libtest Use the same html_root_url for all docs 2014-10-09 10:50:13 -07:00
libtime Remove libdebug and update tests. 2014-10-16 11:15:34 -04:00
libunicode auto merge of #17966 : frewsxcv/rust/master, r=nikomatsakis 2014-10-14 21:22:23 +00:00
llvm@ec1fdb3b9d Update LLVM to get slightly better memcpy elision 2014-10-17 17:16:18 +02:00
rt
rustllvm optimize position independent code in executables 2014-10-12 09:18:14 -04:00
test Add regression test for issue #16791 2014-10-27 18:51:43 -07:00
README.md
snapshots.txt Register new snapshots 2014-10-23 09:38:37 -07:00

This is a preliminary version of the Rust compiler, libraries and tools.

Source layout:

Path Description
librustc/ The self-hosted compiler
liballoc/ Rust's core allocation library
libcore/ The Rust core library
libdebug/ Debugging utilities
libstd/ The standard library (imported and linked by default)
libgreen/ The M:N runtime library
libnative/ The 1:1 runtime library
libsyntax/ The Rust parser and pretty-printer
libtest/ Rust's test-runner code
------------------- ---------------------------------------------------------
libarena/ The arena (a fast but limited) memory allocator
libbacktrace/ The libbacktrace library
libcollections/ A collection of useful data structures and containers
libflate/ Simple compression library
libfmt_macros/ Macro support for format strings
libfourcc/ Data format identifier library
libgetopts/ Get command-line-options library
libglob/ Unix glob patterns library
libgraphviz/ Generating files for Graphviz
libhexfloat/ Hexadecimal floating-point literals
liblibc/ Bindings for the C standard library
liblog/ Utilities for program-wide and customizable logging
libnum/ Extended number support library (complex, rational, etc)
librand/ Random numbers and distributions
libregex/ Regular expressions
libregex_macros/ The regex! syntax extension
libsemver/ Rust's semantic versioning library
libserialize/ Encode-Decode types library
libsync/ Concurrency mechanisms and primitives
libterm/ ANSI color library for terminals
libtime/ Time operations library
liburl/ URL handling lirary
libuuid/ UUID's handling code
------------------- ---------------------------------------------------------
rt/ The runtime system
rt/rust_*.c - Some of the runtime services
rt/vg - Valgrind headers
rt/msvc - MSVC support
rt/sundown - The Markdown library used by rustdoc
------------------- ---------------------------------------------------------
compiletest/ The test runner
test/ Testsuite
test/codegen - Tests for the LLVM IR infrastructure
test/compile-fail - Tests that should fail to compile
test/debug-info - Tests for the debuginfo tool
test/run-fail - Tests that should compile, run and fail
test/run-make - Tests that depend on a Makefile infrastructure
test/run-pass - Tests that should compile, run and succeed
test/bench - Benchmarks and miscellaneous
test/pretty - Pretty-printer tests
test/auxiliary - Dependencies of tests
------------------- ---------------------------------------------------------
librustdoc/ The Rust API documentation tool
------------------- ---------------------------------------------------------
llvm/ The LLVM submodule
rustllvm/ LLVM support code
------------------- ---------------------------------------------------------
etc/ Scripts, editors support, misc

NOTE: This list (especially the second part of the table which contains modules and libraries) is highly volatile and subject to change.