rust/src
2012-11-04 17:14:52 -08:00
..
compiletest Make moves explicit in compiletest 2012-10-12 20:43:37 -07:00
driver Librarify rusti, etc. 2012-11-04 17:14:52 -08:00
etc Revert bogus snapshot.py change 2012-10-08 11:59:51 -07:00
libcargo library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as per #3543 2012-11-03 18:23:43 -07:00
libcore Merge pull request #3916 from Dretch/iofix 2012-11-04 12:51:34 -08:00
libfuzzer library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as per #3543 2012-11-03 18:23:43 -07:00
librustdoc library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as per #3543 2012-11-03 18:23:43 -07:00
librusti Librarify rusti, etc. 2012-11-04 17:14:52 -08:00
libstd Merge remote-tracking branch 'brson/repl' 2012-11-04 13:42:39 -08:00
libsyntax Remove stage0 stuff that was awaiting snapshot 2012-11-03 14:04:32 -07:00
libuv@1170ffba3a
llvm@dc4cdbf052 Hack around llvm 14013 2012-10-05 11:32:28 -07:00
rt Merge remote-tracking branch 'brson/repl' 2012-11-04 13:42:39 -08:00
rustc rustc: Refactor vtable lookup to use a vtable context, so that it can be called outside a function. rs=refactor 2012-11-02 17:59:15 -07:00
rustllvm rustc: add new intrinsics - atomic_cxchg{_acq,_rel} 2012-10-21 22:23:50 -04:00
test syntax: Fold macros in default methods. Closes #3911 2012-11-02 23:11:36 -07:00
README.txt rusti: Remove linenoise module, add to rt, remove core::rl 2012-10-30 11:08:36 +10:00
snapshots.txt Remove stage0 stuff that was awaiting snapshot 2012-11-03 14:04:32 -07: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