rust/src
bors b6933f8d8b auto merge of #11032 : cmr/rust/rustdoc_test, r=alexcrichton
This is just a smoke test which verifies that the expected files are
generated.
2013-12-18 15:16:39 -08:00
..
compiletest Fix #10754 - std::run functions fail after io_error 2013-12-14 12:50:04 -05:00
driver
etc auto merge of #11032 : cmr/rust/rustdoc_test, r=alexcrichton 2013-12-18 15:16:39 -08:00
gyp@f407f09c94
libextra Don't allow impls to force public types 2013-12-17 09:38:57 -08:00
librustc auto merge of #11033 : michaelwoerister/rust/byvalself, r=pcwalton 2013-12-18 08:36:36 -08:00
librustdoc rustdoc: thread through the context for rendering 2013-12-18 15:21:34 -05:00
librustpkg Register new snapshots 2013-12-15 22:17:59 -08:00
librustuv auto merge of #10863 : cadencemarseille/rust/patch-handle-ENOENT, r=alexcrichton 2013-12-17 10:21:44 -08:00
libstd auto merge of #11019 : alexcrichton/rust/issue-10545, r=pcwalton 2013-12-17 21:31:47 -08:00
libsyntax auto merge of #10915 : alexcrichton/rust/fixes, r=ILyoan 2013-12-18 05:01:47 -08:00
libuv@3b89ea32c0
llvm@eac6ff795c
rt
rustllvm llvm: Disable pthread on mingw 2013-12-18 09:48:58 +09:00
test auto merge of #11032 : cmr/rust/rustdoc_test, r=alexcrichton 2013-12-18 15:16:39 -08:00
README.txt
snapshots.txt Register new snapshots 2013-12-15 22:17:59 -08:00

This is a preliminary version of the Rust compiler, libraries and tools

Source layout:

librustc/          The self-hosted compiler

libstd/            The standard library (imported and linked by default)
libextra/          The "extras" library (slightly more peripheral code)
libsyntax/         The Rust parser and pretty-printer

rt/                The runtime system
rt/rust_*.cpp      - The majority of the runtime services
rt/isaac           - The PRNG used for pseudo-random choices in the runtime
rt/bigint          - The bigint library used for the 'big' type
rt/uthash          - Small hashtable-and-list library for C, used in runtime
rt/sync            - Concurrency utils
rt/util            - Small utility classes for the runtime.
rt/vg              - Valgrind headers
rt/msvc            - MSVC support

test/              Testsuite
test/compile-fail  - Tests that should fail to compile
test/run-fail      - Tests that should compile, run and fail
test/run-pass      - Tests that should compile, run and succeed
test/bench         - Benchmarks and miscellanea
test/pretty        - Pretty-printer tests
test/auxiliary     - Dependencies of tests

compiletest/       The test runner

librustpkg/        The package manager and build system

librustdoc/        The Rust API documentation tool

llvm/              The LLVM submodule

libuv/             The libuv submodule

rustllvm/          LLVM support code

libfuzzer/         A collection of fuzz testers

etc/               Scripts, editor support, misc