rust/src
2014-10-27 12:53:01 -07: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 rollup merge of #18229 : bjz/ttdelim 2014-10-27 12:53:01 -07:00
driver
etc debuginfo: Print more output in lldb_batchmode.py for better error logs. 2014-10-22 11:08:21 +02:00
grammar
jemalloc@b001609960
liballoc fix sized deallocation documentation 2014-10-25 14:12:21 -04:00
libarena
libbacktrace
libcollections Add a lint for not using field pattern shorthands 2014-10-24 15:44:18 +13:00
libcore auto merge of #18212 : kmcallister/rust/unsafecell, r=thestinger 2014-10-26 06:37:23 +00:00
libcoretest Add as_unsafe_cell() for Cell and RefCell 2014-10-24 14:15:50 -07:00
libflate
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
libnative Print stack overflow messages for Windows, Linux and OS X 2014-10-24 14:36:29 +02:00
librand Remove a large amount of deprecated functionality 2014-10-19 12:59:40 -07:00
librbml
libregex
libregex_macros
librlibc
librustc Remove cat_discr 2014-10-27 19:06:50 +02:00
librustc_back
librustc_llvm
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 Remove a large amount of deprecated functionality 2014-10-19 12:59:40 -07:00
libstd auto merge of #18130 : mahkoh/rust/udp, r=alexcrichton 2014-10-27 03:57:37 +00:00
libsync Remove a large amount of deprecated functionality 2014-10-19 12:59:40 -07:00
libsyntax Update parse::test::string_to_tts_1 test 2014-10-26 11:20:32 +11:00
libterm
libtest
libtime
libunicode
llvm@ec1fdb3b9d
rt
rustllvm
test rollup merge of #18229 : bjz/ttdelim 2014-10-27 12:53:01 -07: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)
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.