rust/src
2014-10-13 15:10:21 -07:00
..
compiler-rt@62a4ca6055
compiletest Clean up rustc warnings. 2014-10-13 14:16:22 +08:00
doc rollup merge of #17993 : redcape/fix-ffi-docs 2014-10-13 15:10:10 -07:00
driver
etc Include the Unicode version used to generate src/libunicode/tables.rs. 2014-10-13 14:07:12 +01:00
grammar
jemalloc@b001609960
liballoc Clean up rustc warnings. 2014-10-13 14:16:22 +08:00
libarena
libbacktrace
libcollections rollup merge of #17970 : nodakai/cleanup-warnings 2014-10-13 15:09:38 -07:00
libcore Register new snapshots 2014-10-10 22:09:49 -07:00
libcoretest Clean up rustc warnings. 2014-10-13 14:16:22 +08:00
libdebug
libflate
libfmt_macros
libfourcc
libgetopts
libglob Clean up rustc warnings. 2014-10-13 14:16:22 +08:00
libgraphviz Clean up rustc warnings. 2014-10-13 14:16:22 +08:00
libgreen Clean up rustc warnings. 2014-10-13 14:16:22 +08:00
libhexfloat
liblibc auto merge of #17853 : alexcrichton/rust/issue-17718, r=pcwalton 2014-10-10 00:07:08 +00:00
liblog Register new snapshots 2014-10-10 22:09:49 -07:00
libnative Register new snapshots 2014-10-10 22:09:49 -07:00
libnum Clean up rustc warnings. 2014-10-13 14:16:22 +08:00
librand auto merge of #17853 : alexcrichton/rust/issue-17718, r=pcwalton 2014-10-10 00:07:08 +00:00
librbml
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
librustc rollup merge of #18007 : dotdash/arg_lifetime_end 2014-10-13 15:10:21 -07:00
librustc_back auto merge of #17733 : jgallagher/rust/while-let, r=alexcrichton 2014-10-13 19:37:40 +00:00
librustc_llvm optimize position independent code in executables 2014-10-12 09:18:14 -04:00
librustdoc auto merge of #17892 : nodakai/rust/rustdoc-dont-nest-a, r=alexcrichton 2014-10-11 21:42:17 +00:00
librustrt Clean up rustc warnings. 2014-10-13 14:16:22 +08:00
libsemver
libserialize Clean up rustc warnings. 2014-10-13 14:16:22 +08:00
libstd Clean up rustc warnings. 2014-10-13 14:16:22 +08:00
libsync Clean up rustc warnings. 2014-10-13 14:16:22 +08:00
libsyntax rollup merge of #17927 : alexcrichton/more-const 2014-10-13 15:09:25 -07:00
libterm Clean up rustc warnings. 2014-10-13 14:16:22 +08:00
libtest
libtime auto merge of #17467 : hatahet/rust/mybranch, r=alexcrichton 2014-10-13 00:22:39 +00:00
libunicode Include the Unicode version used to generate src/libunicode/tables.rs. 2014-10-13 14:07:12 +01:00
liburl
libuuid
llvm@c9b823739d
rt
rustllvm optimize position independent code in executables 2014-10-12 09:18:14 -04:00
test rollup merge of #17991 : sfackler/extern-error 2014-10-13 15:10:05 -07:00
README.md
snapshots.txt Register new snapshots 2014-10-10 22:09:49 -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.