rust/src
2012-01-23 23:19:00 -06:00
..
cargo cargo: Long lines 2012-01-23 21:14:48 -08:00
comp Added to bad_expr_word_table reserved words 2012-01-23 23:19:00 -06:00
compiletest s/block()/fn()/g 2012-01-23 19:06:33 -08:00
etc rustdoc: Add a script for running rustdoc output through markdown/pandoc 2012-01-23 15:16:14 -08:00
fuzzer s/block()/fn()/g 2012-01-23 19:06:33 -08:00
libcore s/block()/fn()/g 2012-01-23 19:06:33 -08:00
libstd s/block()/fn()/g 2012-01-23 19:06:33 -08:00
libuv@f1859eb841
llvm@d578b905de Revert accidental change to LLVM submodule. 2012-01-19 21:39:49 -08:00
rt std: Add some hacks to use libuv 2012-01-22 20:06:58 -08:00
rustdoc rustdoc: Correctly indent multiline fn signatures 2012-01-23 17:58:52 -08:00
rustllvm
test s/block()/fn()/g 2012-01-23 19:06:33 -08:00
README.txt
snapshots.txt Register snapshots 2012-01-22 15:38:13 -08:00

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.