rust/src
2013-12-20 12:38:46 +11:00
..
compiletest Make Android tests fail if no device is available 2013-12-18 18:12:46 -08:00
driver
etc auto merge of #11072 : chris-morgan/rust/ctags-tweaks, r=cmr 2013-12-19 12:01:59 -08:00
gyp@f407f09c94
libextra extra: remove sort in favour of the std method. 2013-12-20 12:38:46 +11:00
librustc extra: remove sort in favour of the std method. 2013-12-20 12:38:46 +11:00
librustdoc extra: remove sort in favour of the std method. 2013-12-20 12:38:46 +11:00
librustpkg Rename pkgid to crate_id 2013-12-19 10:10:23 -05:00
librustuv auto merge of #11041 : cmr/rust/pkgid_changes, r=cmr,metajack 2013-12-19 07:51:36 -08:00
libstd std::vec: implement a stable merge sort, deferring to insertion sort for 2013-12-20 12:38:46 +11:00
libsyntax extra: remove sort in favour of the std method. 2013-12-20 12:38:46 +11:00
libuv@2207d4ab07 Upgrade libuv to fix a leak on OSX 2013-12-18 23:00:04 -08:00
llvm@eac6ff795c
rt
rustllvm llvm: Disable pthread on mingw 2013-12-18 09:48:58 +09:00
test extra: remove sort in favour of the std method. 2013-12-20 12:38:46 +11:00
README.txt
snapshots.txt Register new snapshots 2013-12-18 09:32:03 -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