rust/src
Alex Crichton 60f97fc44a rollup merge of #19585: mdinger/guide_typo
@steveklabnik r?
2014-12-09 09:24:43 -08:00
..
compiler-rt@62a4ca6055
compiletest librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
doc rollup merge of #19585: mdinger/guide_typo 2014-12-09 09:24:43 -08:00
driver
etc Utilize fewer reexports 2014-12-05 18:13:04 -05:00
grammar
jemalloc@b001609960
liballoc auto merge of #19378 : japaric/rust/no-as-slice, r=alexcrichton 2014-12-08 02:32:31 +00:00
libarena librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
libbacktrace
libcollections auto merge of #19644 : pcwalton/rust/oibit3, r=nikomatsakis 2014-12-09 07:51:52 +00:00
libcore auto merge of #19644 : pcwalton/rust/oibit3, r=nikomatsakis 2014-12-09 07:51:52 +00:00
libcoretest auto merge of #19378 : japaric/rust/no-as-slice, r=alexcrichton 2014-12-08 02:32:31 +00:00
libflate libflate: remove unnecessary as_slice() calls 2014-12-06 19:05:58 -05:00
libfmt_macros librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
libgetopts librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
libgraphviz libgraphviz: remove unnecessary as_slice() calls 2014-12-06 19:05:58 -05:00
liblibc librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
liblog librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
librand librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
librbml librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
libregex librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
libregex_macros libregex_macros: remove unnecessary as_slice calls 2014-12-06 19:05:58 -05:00
librustc auto merge of #19466 : nikomatsakis/rust/recursion-limit, r=eddyb 2014-12-09 14:02:45 +00:00
librustc_back librustc_back: remove unnecessary to_string() calls 2014-12-06 23:53:02 -05:00
librustc_driver auto merge of #19466 : nikomatsakis/rust/recursion-limit, r=eddyb 2014-12-09 14:02:45 +00:00
librustc_llvm librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
librustc_trans rollup merge of #19581: luqmana/duc 2014-12-09 09:24:41 -08:00
librustc_typeck auto merge of #19466 : nikomatsakis/rust/recursion-limit, r=eddyb 2014-12-09 14:02:45 +00:00
librustdoc librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
librustrt Add some missing Copy implementations 2014-12-08 21:44:04 -08:00
libserialize auto merge of #19249 : barosl/rust/json-type-safety, r=alexcrichton 2014-12-09 10:51:49 +00:00
libstd rollup merge of #19577: aidancully/master 2014-12-09 09:24:39 -08:00
libsyntax auto merge of #19644 : pcwalton/rust/oibit3, r=nikomatsakis 2014-12-09 07:51:52 +00:00
libterm librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
libtest librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
libtime librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
libunicode librustc: Make Copy opt-in. 2014-12-08 13:47:44 -05:00
llvm@ec1fdb3b9d
rt
rustllvm
test rollup merge of #19581: luqmana/duc 2014-12-09 09:24:41 -08:00
README.md
snapshots.txt Revert "Register new snapshots" 2014-12-08 14:30:13 -08: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)
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.