rust/src
2014-12-06 19:05:58 -05:00
..
compiler-rt@62a4ca6055
compiletest test: expose boxplot and the extra stats test keeps track of 2014-12-05 09:04:55 -08:00
doc rollup merge of #19526: steveklabnik/gh19402 2014-12-05 10:07:49 -08:00
driver
etc rollup merge of #19474: luqmana/fl 2014-12-05 10:07:11 -08:00
grammar
jemalloc@b001609960
liballoc liballoc: remove unnecessary as_slice() calls 2014-12-06 19:05:58 -05:00
libarena
libbacktrace
libcollections libcollections: remove unnecessary as_slice() calls 2014-12-06 19:05:58 -05:00
libcore rollup merge of #19553: sfackler/issue-19543 2014-12-05 10:08:33 -08:00
libcoretest libcoretest: remove unnecessary as_slice() calls 2014-12-06 19:05:58 -05:00
libflate libflate: remove unnecessary as_slice() calls 2014-12-06 19:05:58 -05:00
libfmt_macros libfmt_macros: remove unnecessary as_slice() calls 2014-12-06 19:05:58 -05:00
libgetopts libgetops: remove unnecessary as_slice() calls 2014-12-06 19:05:58 -05:00
libgraphviz libgraphviz: remove unnecessary as_slice() calls 2014-12-06 19:05:58 -05:00
liblibc
liblog liblog: remove unnecessary as_slice calls 2014-12-06 19:05:58 -05:00
librand
librbml
libregex libregex: remove unnecessary as_slice calls 2014-12-06 19:05:58 -05:00
libregex_macros libregex_macros: remove unnecessary as_slice calls 2014-12-06 19:05:58 -05:00
librustc librustc: remove unnecessary as_slice() calls 2014-12-06 19:05:58 -05:00
librustc_back librustc_back: remove unnecessary as_slice() calls 2014-12-06 19:05:58 -05:00
librustc_driver librustc_trans: remove unnecessary as_slice calls 2014-12-06 19:05:58 -05:00
librustc_llvm
librustc_trans librustc_trans: remove unnecessary as_slice calls 2014-12-06 19:05:58 -05:00
librustc_typeck
librustdoc librustdoc: remove unnecessary as_slice() calls 2014-12-06 19:05:58 -05:00
librustrt
libserialize libserialize: remove unnecessary as_slice() calls 2014-12-06 19:05:58 -05:00
libstd auto merge of #19431 : erickt/rust/buf-writer-error, r=alexcrichton 2014-12-06 20:12:13 +00:00
libsyntax rollup merge of #19494: P1start/better-expected 2014-12-05 10:07:36 -08:00
libterm
libtest auto merge of #19508 : cmr/rust/rollup-2014_12_03, r=cmr 2014-12-05 20:23:10 +00:00
libtime
libunicode
llvm@ec1fdb3b9d
rt
rustllvm
test Ignore wait-forked-but-failed-child 2014-12-06 08:13:57 -08: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.