rust/src
2012-12-10 12:38:31 -08:00
..
compiletest Update license, add license boilerplate to most files. Remainder will follow. 2012-12-03 17:12:14 -08:00
driver Update license, add license boilerplate to most files. Remainder will follow. 2012-12-03 17:12:14 -08:00
etc librustc: Propagate type uses correctly from method calls to the containing functions. rs=bugfix 2012-12-06 19:11:51 -08:00
libcargo Update license, add license boilerplate to most files. Remainder will follow. 2012-12-03 17:12:14 -08:00
libcore Remove transitional code 2012-12-09 17:59:21 -08:00
libfuzzer Update license, add license boilerplate to most files. Remainder will follow. 2012-12-03 17:12:14 -08:00
librustc librustc: Fix bug preventing cross-crate struct destructuring from working. rs=bugfix 2012-12-10 12:38:31 -08:00
librustdoc librustc: Hook borrow check loan checking up to the moves-based-on-type infrastructure. rs=helps-unbreak-the-build 2012-12-05 15:07:48 -08:00
librusti Long lines 2012-12-07 15:08:09 -08:00
libstd Remove transitional code 2012-12-09 17:59:21 -08:00
libsyntax Remove transitional code 2012-12-09 17:59:21 -08:00
libuv@1170ffba3a
llvm@accc36b3e3
rt Remove bogus FIXME, closes #2889 2012-12-06 16:14:54 -08:00
rustllvm
test librustc: Fix bug preventing cross-crate struct destructuring from working. rs=bugfix 2012-12-10 12:38:31 -08:00
README.txt
snapshots.txt Register snapshots 2012-12-09 17:49:59 -08:00

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

Source layout:

librustc/          The self-hosted compiler

libcore/           The core library (imported and linked by default)
libstd/            The standard 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

libcargo/          The package manager

librusti/          The JIT REPL

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