rust/src
Niels Egberts 2dc338dfdb Rename assert_eq arguments to left and right.
The names expected and actual are not used anymore in the output. It also
removes the confusion that the argument order is the opposite of junit.
2014-12-09 00:09:42 +00:00
..
compiler-rt@62a4ca6055
compiletest
doc auto merge of #19560 : sfackler/rust/should-fail-reason, r=alexcrichton 2014-12-08 12:12:23 +00:00
driver
etc
grammar
jemalloc@b001609960
liballoc auto merge of #19378 : japaric/rust/no-as-slice, r=alexcrichton 2014-12-08 02:32:31 +00:00
libarena
libbacktrace
libcollections auto merge of #19574 : erickt/rust/vec-reserve, r=alexcrichton 2014-12-08 18:42:21 +00:00
libcore core: make the public fmt API completely safe. 2014-12-08 09:14:21 +02:00
libcoretest auto merge of #19378 : japaric/rust/no-as-slice, r=alexcrichton 2014-12-08 02:32:31 +00:00
libflate
libfmt_macros
libgetopts auto merge of #19378 : japaric/rust/no-as-slice, r=alexcrichton 2014-12-08 02:32:31 +00:00
libgraphviz
liblibc
liblog
librand
librbml
libregex
libregex_macros
librustc auto merge of #19378 : japaric/rust/no-as-slice, r=alexcrichton 2014-12-08 02:32:31 +00:00
librustc_back librustc_back: remove unnecessary to_string() calls 2014-12-06 23:53:02 -05:00
librustc_driver librustc_trans: remove unnecessary as_mut_slice calls 2014-12-06 23:53:01 -05:00
librustc_llvm
librustc_trans auto merge of #19378 : japaric/rust/no-as-slice, r=alexcrichton 2014-12-08 02:32:31 +00:00
librustc_typeck auto merge of #19539 : cmr/rust/18959, r=nikomatsakis 2014-12-07 16:12:22 +00:00
librustdoc auto merge of #19560 : sfackler/rust/should-fail-reason, r=alexcrichton 2014-12-08 12:12:23 +00:00
librustrt
libserialize libserialize: remove unnecessary to_string() calls 2014-12-06 23:53:02 -05:00
libstd Rename assert_eq arguments to left and right. 2014-12-09 00:09:42 +00:00
libsyntax auto merge of #19560 : sfackler/rust/should-fail-reason, r=alexcrichton 2014-12-08 12:12:23 +00:00
libterm auto merge of #19378 : japaric/rust/no-as-slice, r=alexcrichton 2014-12-08 02:32:31 +00:00
libtest auto merge of #19560 : sfackler/rust/should-fail-reason, r=alexcrichton 2014-12-08 12:12:23 +00:00
libtime auto merge of #19378 : japaric/rust/no-as-slice, r=alexcrichton 2014-12-08 02:32:31 +00:00
libunicode
llvm@ec1fdb3b9d
rt
rustllvm
test auto merge of #19560 : sfackler/rust/should-fail-reason, r=alexcrichton 2014-12-08 12:12:23 +00:00
README.md
snapshots.txt

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)
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.