rust/src
2012-01-23 17:37:15 -08:00
..
cargo Don't reset the chpos/byte_pos to 0 in new_parser_from_source_str. 2012-01-23 17:37:15 -08:00
comp When replacing a pattern variable in macro expansion use the span of 2012-01-23 17:37:15 -08:00
compiletest issue #1352: change param order on vec::init_elt, putting block in final position. 2012-01-21 13:33:16 -08:00
etc rustdoc: Add a script for running rustdoc output through markdown/pandoc 2012-01-23 15:16:14 -08:00
fuzzer Allow ast_fold_precursor to change the span. 2012-01-23 17:37:15 -08:00
libcore core: Write docs that format correctly in markdown or pandoc 2012-01-23 17:11:01 -08:00
libstd std: Add some hacks to use libuv 2012-01-22 20:06:58 -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 Don't reset the chpos/byte_pos to 0 in new_parser_from_source_str. 2012-01-23 17:37:15 -08:00
rustllvm llvm: Switch back to LLVM trunk 2012-01-13 11:05:59 -08:00
test Add regresion tests for issue #1448 and #1387. 2012-01-23 17:37:15 -08:00
README.txt Rename some readmes and fix some dist logic. 2012-01-17 16:50:13 -08:00
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.