rust/src
Huon Wilson b800ce1608 Implement lifetime elision for Foo(...) -> ... type sugar.
This means that `Fn(&A) -> (&B, &C)` is equivalent to `for<'a> Fn(&'a A)
-> (&'a B, &'a C)` similar to the lifetime elision of lower-case `fn` in
types and declarations.

Closes #18992.
2014-12-05 19:04:13 -08:00
..
compiler-rt@62a4ca6055
compiletest
doc auto merge of #18613 : steveklabnik/rust/ownership_guide, r=huonw 2014-12-04 04:52:37 +00:00
driver Separate the driver into its own crate that uses trans, typeck. 2014-12-04 10:04:52 -05:00
etc rustup: simplify downloading packages 2014-12-03 15:21:16 -08:00
grammar
jemalloc@b001609960
liballoc
libarena
libbacktrace
libcollections Deprecate Equiv 2014-12-03 10:41:48 -05:00
libcore auto merge of #18980 : erickt/rust/reader, r=erickt 2014-12-04 21:33:07 +00:00
libcoretest Fix fallout 2014-12-03 10:41:48 -05:00
libflate
libfmt_macros
libgetopts
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
librand
librbml
libregex
libregex_macros
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
librustc_trans Separate the driver into its own crate that uses trans, typeck. 2014-12-04 10:04:52 -05:00
librustc_typeck Implement lifetime elision for Foo(...) -> ... type sugar. 2014-12-05 19:04:13 -08:00
librustdoc Separate the driver into its own crate that uses trans, typeck. 2014-12-04 10:04:52 -05:00
librustrt
libserialize
libstd std: Close TcpListener with closesocket() 2014-12-05 00:49:31 -08:00
libsyntax Modify libsyntax/diagnostics to not be so persnickety. The scheme 2014-12-04 10:04:51 -05:00
libterm Fix fallout 2014-12-03 10:41:48 -05:00
libtest
libtime
libunicode
llvm@ec1fdb3b9d
rt
rustllvm
test Implement lifetime elision for Foo(...) -> ... type sugar. 2014-12-05 19:04:13 -08: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.