rust/src
2014-11-25 21:41:23 -06:00
..
compiler-rt@62a4ca6055
compiletest compiletest: extend syntax with support for choosing same line as previous line. 2014-11-24 13:19:26 +01:00
doc auto merge of #19172 : alfie/rust/impl-traitless, r=steveklabnik 2014-11-25 11:46:39 +00:00
driver
etc auto merge of #19255 : aturon/rust/merge-sync, r=alexcrichton,alexcrichton 2014-11-25 20:32:20 +00:00
grammar
jemalloc@b001609960
liballoc rollup merge of #19225: reem/any-unnecessary-transmute-copy 2014-11-23 14:11:58 -05:00
libarena
libbacktrace
libcollections Make BinaryHeap's Items iterator implement DoubleEnded and ExactSize 2014-11-25 21:41:23 -06:00
libcore auto merge of #19149 : alexcrichton/rust/issue-19091, r=aturon 2014-11-25 09:21:45 +00:00
libcoretest auto merge of #18966 : huonw/rust/iter2slice, r=aturon 2014-11-25 06:51:38 +00:00
libflate
libfmt_macros
libgetopts
libgraphviz
liblibc
liblog std: Add a new top-level thread_local module 2014-11-23 23:37:16 -08:00
librand
librbml
libregex
libregex_macros
librustc auto merge of #19011 : ricky26/rust/trait_supertraits, r=nikomatsakis 2014-11-25 22:36:59 +00:00
librustc_back rollup merge of #19211: aochagavia/tuple-index 2014-11-23 14:11:56 -05:00
librustc_llvm Rename unwrap functions to into_inner 2014-11-23 15:26:53 -08:00
librustc_trans auto merge of #18234 : pnkfelix/rust/fsk-type-fragments-for-needsdrop-2, r=nikomatsakis 2014-11-25 15:48:05 +00:00
librustdoc rustdoc: render ast::QPath 2014-11-24 05:23:10 -08:00
librustrt auto merge of #19149 : alexcrichton/rust/issue-19091, r=aturon 2014-11-25 09:21:45 +00:00
libserialize
libstd auto merge of #19255 : aturon/rust/merge-sync, r=alexcrichton,alexcrichton 2014-11-25 20:32:20 +00:00
libsyntax Add node_to_user_string, node_to_string variant that drops id from output. 2014-11-24 13:19:26 +01:00
libterm rollup merge of #19194: aturon/stab-ascii 2014-11-23 14:11:51 -05:00
libtest Rename unwrap functions to into_inner 2014-11-23 15:26:53 -08:00
libtime
libunicode
llvm@ec1fdb3b9d
rt
rustllvm
test auto merge of #19011 : ricky26/rust/trait_supertraits, r=nikomatsakis 2014-11-25 22:36:59 +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.