rust/src
2011-12-22 09:29:45 -08:00
..
cargo Merge pull request #1365 from elly/cargo 2011-12-20 20:59:03 -08:00
comp More flailing on log syntax due to call-expr ambiguity in previous attempt. 2011-12-21 18:05:08 -08:00
compiletest std: getopts now uses result::t (fixes #1289) 2011-12-18 18:55:39 -08:00
etc Remove cargo from snapshot file-list again; overestimated. 2011-12-19 13:42:33 -08:00
fuzzer removed math leftovers from std 2011-12-20 18:07:36 +01:00
libcore Revert "wip" 2011-12-20 20:57:04 -08:00
libstd Add companion-module core.rs that exports log levels and option/some/none everywhere. 2011-12-20 12:41:44 -08:00
libuv@f1859eb841
llvm@a320b2aa41 Fix merge error and rebasing changes for debug information. 2011-12-19 01:36:37 -05:00
rt Revert "wip" 2011-12-20 20:57:04 -08:00
rustdoc rustdoc: Some rights reserved? 2011-12-20 17:19:46 -05:00
rustllvm Remove rebase error. 2011-12-18 23:44:21 -05:00
test add tests I forgot to add 2011-12-21 08:41:41 -08:00
README Mention new dirs in README. 2011-12-07 15:34:30 -08:00
snapshots.txt Register another snapshot. There was nothing redeeming about the last one. 2011-12-22 09:29:45 -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.