rust/src
Alex Crichton 3e04d2e3db Adding tests for closed issues
Closes #5806
Closes #5950
Closes #7178
Closes #8259
Closes #8578
Closes #8851
Closes #9129
Closes #10412
2013-12-18 09:12:04 -08:00
..
compiletest Fix #10754 - std::run functions fail after io_error 2013-12-14 12:50:04 -05:00
driver
etc Add "proc" as keyword to emacs mode 2013-12-14 18:00:21 -05:00
gyp@f407f09c94
libextra Register new snapshots 2013-12-15 22:17:59 -08:00
librustc auto merge of #10966 : michaelwoerister/rust/prelude2, r=cmr 2013-12-16 05:51:32 -08:00
librustdoc Register new snapshots 2013-12-15 22:17:59 -08:00
librustpkg Register new snapshots 2013-12-15 22:17:59 -08:00
librustuv Register new snapshots 2013-12-15 22:17:59 -08:00
libstd Spell out the units used for the offset argument, so that people do 2013-12-16 17:07:04 +01:00
libsyntax auto merge of #10994 : ktt3ja/rust/issue-10956, r=alexcrichton 2013-12-16 01:16:29 -08:00
libuv@3b89ea32c0
llvm@eac6ff795c
rt
rustllvm
test Adding tests for closed issues 2013-12-18 09:12:04 -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