rust/src
2012-12-05 19:01:14 -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
libcargo Update license, add license boilerplate to most files. Remainder will follow. 2012-12-03 17:12:14 -08:00
libcore libcore: Fix some more coretest bustage. rs=bustage 2012-12-05 15:30:00 -08:00
libfuzzer Update license, add license boilerplate to most files. Remainder will follow. 2012-12-03 17:12:14 -08:00
librustc librustc: Move the "legality of move bindings" check from typechecking to alt checking. rs=refactoring 2012-12-05 19:01:14 -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 librustc: Make a context including the method map in check_alt, in preparation for moving check_legality_of_move_bindings there. rs=refactoring 2012-12-05 18:28:34 -08:00
libstd librustc: Implement moves based on type. r=nmatsakis 2012-12-04 15:38:04 -08:00
libsyntax 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
libuv@1170ffba3a
llvm@accc36b3e3
rt Update license, add license boilerplate to most files. Remainder will follow. 2012-12-03 17:12:14 -08:00
rustllvm
test Fix cross-crate inlining of static functions 2012-12-05 18:09:52 -08:00
README.txt
snapshots.txt

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