rust/src
Tim Chevalier bde2dcc8d5 Merge pull request #4085 from andrew-d/andrew-fix-typo
Fix small typo in kinds documentation
2012-11-30 12:48:28 -08:00
..
compiletest core: Convert some records to structs 2012-11-28 21:50:09 -08:00
driver Rename src/rustc to src/librustc. Use the driver crate 2012-11-07 13:53:39 -08:00
etc Revert bogus snapshot.py change 2012-10-08 11:59:51 -07:00
libcargo Merge remote-tracking branch 'brson/companion' into incoming 2012-11-28 13:17:33 -08:00
libcore Merge pull request #4085 from andrew-d/andrew-fix-typo 2012-11-30 12:48:28 -08:00
libfuzzer Register snapshots 2012-11-28 12:33:00 -08:00
librustc Disallow dereferencing enum types when the variant is private 2012-11-30 12:45:10 -08:00
librustdoc librustc: Eliminate most expressions of the form a.b() that are not method calls. rs=refactoring 2012-11-29 17:51:56 -08:00
librusti Allow for macros to occur in statement position. 2012-11-29 12:09:10 -08:00
libstd libs: Remove transitionary material on iter_bytes, add workcache to build. 2012-11-30 10:33:16 -08:00
libsyntax Disallow dereferencing enum types when the variant is private 2012-11-30 12:45:10 -08:00
libuv@1170ffba3a rustc: Don't generate landing pad cleanups for boxy things 2012-03-29 16:43:18 -07:00
llvm@accc36b3e3 llvm: fork to disable LiveIRVariabes in GCStrategy. 2012-11-14 18:21:09 -08:00
rt Add a FIXME about the problems closing /dev/urandom 2012-11-26 12:54:29 -08:00
rustllvm rustc: add new intrinsics - atomic_cxchg{_acq,_rel} 2012-10-21 22:23:50 -04:00
test Disallow dereferencing enum types when the variant is private 2012-11-30 12:45:10 -08:00
README.txt rusti: Remove linenoise module, add to rt, remove core::rl 2012-10-30 11:08:36 +10:00
snapshots.txt Register snapshots 2012-11-28 12:33:00 -08:00

This is a preliminary version of the Rust compiler, libraries and tools

Source layout:

rustc/             The self-hosted compiler

libcore/           The core library (imported and linked by default)
libstd/            The standard library (slightly more peripheral code)
libsyntax/         The Rust parser and pretty-printer

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/sync            - Concurrency utils
rt/util            - Small utility classes for the runtime.
rt/vg              - Valgrind headers
rt/msvc            - MSVC support

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
test/pretty        - Pretty-printer tests
test/auxiliary     - Dependencies of tests

compiletest/       The test runner

cargo/             The package manager

rusti/             The JIT REPL

rustdoc/           The Rust API documentation tool

llvm/              The LLVM submodule

libuv/             The libuv submodule

rustllvm/          LLVM support code

fuzzer/            A collection of fuzz testers

etc/               Scripts, editor support, misc