rust/src
2012-01-23 21:42:29 -06:00
..
cargo Get description attribute for packages from json. 2012-01-23 21:42:29 -06:00
comp Change rustc and rustdoc's #[desc] attribute to #[comment] 2012-01-23 16:25:20 -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 misc: ';' to ',' in enums in cargo, compiletest, and fuzzer 2012-01-19 18:47:30 -08:00
libcore core: Reformat the crate docs to look nicer 2012-01-23 16:58:30 -08:00
libstd std: Add some hacks to use libuv 2012-01-22 20:06:58 -08:00
libuv@f1859eb841 Re-add libuv as a submodule. 2011-11-08 19:01:47 -08:00
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 Change rustc and rustdoc's #[desc] attribute to #[comment] 2012-01-23 16:25:20 -08:00
rustllvm llvm: Switch back to LLVM trunk 2012-01-13 11:05:59 -08:00
test add msgsend.rs to benchmarks 2012-01-23 16:04:14 -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.