Marijn Haverbeke e2e077c831 Remove trivial cast checker
I consider the added complexity not justified at this point, and it
interacts badly with the patches for issue #828. Feel free to discuss.
2011-12-22 15:04:00 +01:00
..
2011-12-22 15:04:00 +01:00
2011-12-20 18:07:36 +01:00
2011-12-22 15:04:00 +01:00
2011-12-22 08:46:50 +01:00
2011-11-08 19:01:47 -08:00
2011-12-20 20:57:04 -08:00
2011-12-20 17:19:46 -05:00
2011-12-18 23:44:21 -05:00
2011-12-22 15:04:00 +01:00
2011-12-07 15:34:30 -08:00
2011-12-21 16:47: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.