rust/src
Corey Richardson fb55cbda8d rollup merge of #19462: MatejLach/but-and_guide
Using `and` here instead of `but` sounds better to me, as but makes it sound like an item which is still under active development shouldn't normally require more testing, but this one does - or something like that :-)
@steveklabnik?
2014-12-05 10:07:04 -08: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 rollup merge of #19462: MatejLach/but-and_guide 2014-12-05 10:07:04 -08:00
driver Separate the driver into its own crate that uses trans, typeck. 2014-12-04 10:04:52 -05:00
etc Fall out of the std::sync rewrite 2014-12-05 09:12:25 -08:00
grammar Adjust Antlr4 lexer to include suffixes. 2014-11-20 00:02:42 +11:00
jemalloc@b001609960 update jemalloc 2014-10-05 22:17:25 -04:00
liballoc auto merge of #19112 : steveklabnik/rust/doc_rc, r=Gankro 2014-11-27 17:26:22 +00:00
libarena Remove special casing for some meta attributes 2014-11-26 11:44:45 -08:00
libbacktrace
libcollections Deprecate Equiv 2014-12-03 10:41:48 -05:00
libcore rollup merge of #19386: tbu-/pr_refcell_stuff 2014-12-05 10:06:43 -08:00
libcoretest Fix fallout 2014-12-03 10:41:48 -05:00
libflate auto merge of #19343 : sfackler/rust/less-special-attrs, r=alexcrichton 2014-11-27 06:41:17 +00:00
libfmt_macros make fmt_macros and rustdoc have standard doc attributes 2014-12-03 12:49:59 -05:00
libgetopts getopts: cleanup, renames, remove reexports 2014-11-27 15:10:48 -05:00
libgraphviz auto merge of #18980 : erickt/rust/reader, r=erickt 2014-12-04 21:33:07 +00:00
liblibc liblibc: getsid() was missing though setsid() was already there. 2014-12-02 02:50:57 +08:00
liblog Remove special casing for some meta attributes 2014-11-26 11:44:45 -08:00
librand auto merge of #19343 : sfackler/rust/less-special-attrs, r=alexcrichton 2014-11-27 06:41:17 +00:00
librbml Remove special casing for some meta attributes 2014-11-26 11:44:45 -08:00
libregex auto merge of #19343 : sfackler/rust/less-special-attrs, r=alexcrichton 2014-11-27 06:41:17 +00:00
libregex_macros Remove special casing for some meta attributes 2014-11-26 11:44:45 -08:00
librustc Move typeck into its own crate. 2014-12-04 10:04:52 -05:00
librustc_back Fix fallout 2014-12-03 10:41:48 -05:00
librustc_driver Fix various references in late-running tests and things 2014-12-05 01:52:18 -05:00
librustc_llvm auto merge of #19343 : sfackler/rust/less-special-attrs, r=alexcrichton 2014-11-27 06:41:17 +00:00
librustc_trans Separate the driver into its own crate that uses trans, typeck. 2014-12-04 10:04:52 -05:00
librustc_typeck Move typeck into its own crate. 2014-12-04 10:04:52 -05:00
librustdoc rollup merge of #19453: pshc/rustdoc-check-a-href 2014-12-05 10:06:58 -08:00
librustrt librustrt: stack_overflow support mipsel linux 2014-11-28 09:15:12 +08:00
libserialize auto merge of #19343 : sfackler/rust/less-special-attrs, r=alexcrichton 2014-11-27 06:41:17 +00:00
libstd rollup merge of #19454: nodakai/libstd-reap-failed-child 2014-12-05 10:07:02 -08:00
libsyntax rollup merge of #19413: P1start/more-trailing-commas 2014-12-05 10:06:50 -08:00
libterm Fix fallout 2014-12-03 10:41:48 -05:00
libtest auto merge of #19343 : sfackler/rust/less-special-attrs, r=alexcrichton 2014-11-27 06:41:17 +00:00
libtime std: add Reader impl for &[u8] 2014-11-30 16:55:53 -08:00
libunicode auto merge of #19343 : sfackler/rust/less-special-attrs, r=alexcrichton 2014-11-27 06:41:17 +00:00
llvm@ec1fdb3b9d Update LLVM to get slightly better memcpy elision 2014-10-17 17:16:18 +02:00
rt remove the uv_support code 2014-10-02 05:05:12 -04:00
rustllvm optimize position independent code in executables 2014-10-12 09:18:14 -04:00
test rollup merge of #19454: nodakai/libstd-reap-failed-child 2014-12-05 10:07:02 -08:00
README.md Fallout from libgreen and libnative removal 2014-11-20 17:19:24 -08:00
snapshots.txt Register new snapshots 2014-11-21 14:15:33 -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.