rust/src
Patrick Walton 7c00d77e8b librustc: Implement the syntax in the RFC for unboxed closure sugar.
Part of issue #16640. I am leaving this issue open to handle parsing of
higher-rank lifetimes in traits.

This change breaks code that used unboxed closures:

* Instead of `F:|&: int| -> int`, write `F:Fn(int) -> int`.

* Instead of `F:|&mut: int| -> int`, write `F:FnMut(int) -> int`.

* Instead of `F:|: int| -> int`, write `F:FnOnce(int) -> int`.

[breaking-change]
2014-09-18 16:31:58 -07:00
..
compiler-rt@62a4ca6055
compiletest
doc librustc: Implement associated types behind a feature gate. 2014-09-17 16:38:57 -07:00
driver
etc auto merge of #17335 : TeXitoi/rust/relicense-shootout, r=brson 2014-09-18 03:20:39 +00:00
grammar
gyp@1e46da1000
jemalloc@2dba541881 jemalloc: Un-revert accidentally reverted jemalloc 2014-09-18 13:40:15 -07:00
liballoc
libarena
libbacktrace
libcollections
libcore rollup merge of #17329 : alexcrichton/snapshots 2014-09-17 08:50:05 -07:00
libcoretest
libdebug
libflate
libfmt_macros
libfourcc
libgetopts
libglob
libgraphviz
libgreen
libhexfloat
liblibc
liblog Fix the inverted RUST_LOG filter 2014-09-17 13:26:26 -07:00
libnative
libnum Test fixes from the rollup 2014-09-17 09:37:39 -07:00
librand
librbml
libregex
libregex_macros
librlibc
librustc librustc: Implement the syntax in the RFC for unboxed closure sugar. 2014-09-18 16:31:58 -07:00
librustc_back
librustc_llvm
librustdoc librustc: Implement associated types behind a feature gate. 2014-09-17 16:38:57 -07:00
librustrt
librustuv
libsemver
libserialize
libstd auto merge of #17249 : vadimcn/rust/env-keys, r=alexcrichton 2014-09-18 17:05:35 +00:00
libsync
libsyntax librustc: Implement the syntax in the RFC for unboxed closure sugar. 2014-09-18 16:31:58 -07:00
libterm
libtest
libtime
libunicode
liburl
libuuid
libuv@dec0561d19
llvm@e9d0374194
rt
rustllvm
test librustc: Implement the syntax in the RFC for unboxed closure sugar. 2014-09-18 16:31:58 -07: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)
libgreen/ The M:N runtime library
libnative/ The 1:1 runtime library
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
libuv/ The libuv submodule
librustuv/ Rust libuv support code
------------------- ---------------------------------------------------------
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.