rust/src
Brian Anderson acb5fefd6d core: Rename Char::is_digit_radix to is_digit
This fits the naming of `to_digit` and `from_digit`. Leave
the old name deprecated.
2014-11-21 13:17:09 -08:00
..
compiler-rt@62a4ca6055
compiletest unicode: Rename UnicodeChar::is_digit to is_numeric 2014-11-21 13:17:04 -08:00
doc auto merge of #18967 : aturon/rust/remove-runtime, r=alexcrichton 2014-11-21 03:41:45 +00:00
driver Remove libnative 2014-11-20 17:19:13 -08:00
etc auto merge of #19095 : juxiliary/rust/master, r=bstrie 2014-11-21 16:56:47 +00:00
grammar
jemalloc@b001609960
liballoc Fallout from libgreen and libnative removal 2014-11-20 17:19:24 -08:00
libarena
libbacktrace
libcollections unicode: Rename UnicodeChar::is_digit to is_numeric 2014-11-21 13:17:04 -08:00
libcore core: Rename Char::is_digit_radix to is_digit 2014-11-21 13:17:09 -08:00
libcoretest unicode: Rename UnicodeChar::is_digit to is_numeric 2014-11-21 13:17:04 -08:00
libflate
libfmt_macros
libgetopts Rename remaining Failures to Panic 2014-11-20 23:45:42 +05:30
libgraphviz libcore: DST-ify AsSlice 2014-11-20 00:05:00 -08:00
liblibc Fallout from libgreen and libnative removal 2014-11-20 17:19:24 -08:00
liblog
librand Fallout from libgreen and libnative removal 2014-11-20 17:19:24 -08:00
librbml Rename remaining Failures to Panic 2014-11-20 23:45:42 +05:30
libregex Rename remaining Failures to Panic 2014-11-20 23:45:42 +05:30
libregex_macros
librustc unicode: Rename UnicodeChar::is_digit to is_numeric 2014-11-21 13:17:04 -08:00
librustc_back auto merge of #19113 : nikomatsakis/rust/unboxed-boxed-closure-unification, r=acrichto 2014-11-20 12:01:44 +00:00
librustc_llvm
librustc_trans Remove libnative 2014-11-20 17:19:13 -08:00
librustdoc
librustrt Fallout from new termination semantics 2014-11-20 17:19:24 -08:00
libserialize
libstd unicode: Rename UnicodeChar::is_digit to is_numeric 2014-11-21 13:17:04 -08:00
libsync Fallout from namespaced enums 2014-11-20 17:19:24 -08:00
libsyntax Remove libnative 2014-11-20 17:19:13 -08:00
libterm
libtest
libtime
libunicode unicode: Rename UnicodeChar::is_digit to is_numeric 2014-11-21 13:17:04 -08:00
llvm@ec1fdb3b9d
rt
rustllvm
test Loosen possibly bogus constraints in backtrace test 2014-11-20 17:19:24 -08:00
README.md Fallout from libgreen and libnative removal 2014-11-20 17:19:24 -08:00
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.