rust/src
2012-11-29 12:09:11 -08:00
..
compiletest core: Convert some records to structs 2012-11-28 21:50:09 -08:00
driver
etc
libcargo Merge remote-tracking branch 'brson/companion' into incoming 2012-11-28 13:17:33 -08:00
libcore No longer parse the delimiters of the RHS of a macro as part of the expansion. 2012-11-29 12:09:10 -08:00
libfuzzer Register snapshots 2012-11-28 12:33:00 -08:00
librustc No longer parse the delimiters of the RHS of a macro as part of the expansion. 2012-11-29 12:09:10 -08:00
librustdoc rustdoc: More pipe conversion 2012-11-28 20:51:18 -08:00
librusti Allow for macros to occur in statement position. 2012-11-29 12:09:10 -08:00
libstd librustc: Make the Drop trait use explicit self 2012-11-29 11:06:15 -08:00
libsyntax Fix trace_macros so that it works. 2012-11-29 12:09:11 -08:00
libuv@1170ffba3a
llvm@accc36b3e3
rt
rustllvm
test Test statement macros. 2012-11-29 12:09:11 -08:00
README.txt
snapshots.txt Register snapshots 2012-11-28 12:33:00 -08:00

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

Source layout:

rustc/             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

cargo/             The package manager

rusti/             The JIT REPL

rustdoc/           The Rust API documentation tool

llvm/              The LLVM submodule

libuv/             The libuv submodule

rustllvm/          LLVM support code

fuzzer/            A collection of fuzz testers

etc/               Scripts, editor support, misc