rust/src
2012-02-10 12:58:35 -08:00
..
cargo cargo: Disable system mode per discussion on #1760 2012-02-09 13:42:59 -08:00
comp Don't allow binding patterns to bind keywords 2012-02-10 15:54:47 +01:00
compiletest
etc
fuzzer
libcore core: Use rust_task_config_notify instead of twiddling rust_task's innards 2012-02-09 19:00:15 -08:00
libstd Remove some pointless imports 2012-02-09 15:30:27 +01:00
libuv@1170ffba3a
llvm@d578b905de
rt rt: Account for the size of stack_canary in create_stack 2012-02-10 12:58:35 -08:00
rustdoc
rustllvm
test Don't allow binding patterns to bind keywords 2012-02-10 15:54:47 +01:00
README.txt
snapshots.txt

This is preliminary version of the Rust compiler.

Source layout:

comp/              The self-hosted compiler

cargo/             The package manager

libcore/           The core library (imported and linked by default)
libstd/            The standard library (slightly more peripheral code)

rustllvm/          LLVM support code

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/libuv           - The library used for async IO in the runtime
rt/{sync,util}     - Small utility classes for the runtime.

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

Please be gentle, it's a work in progress.