rust/src
2012-12-14 15:38:53 -08:00
..
compiletest Add license boilerplate to more files. 2012-12-10 17:32:58 -08:00
driver
etc update syntax/rust.vim for keyword changes 2012-12-14 17:13:11 -05:00
libcargo librustc: Make use statements crate-relative by default. r=brson 2012-12-13 13:05:22 -08:00
libcore Rename core::comm to core::oldcomm 2012-12-14 14:59:32 -08:00
libfuzzer
librustc Rename core::comm to core::oldcomm 2012-12-14 14:59:32 -08:00
librustdoc Rename core::comm to core::oldcomm 2012-12-14 14:59:32 -08:00
librusti librustc: Make use statements crate-relative by default. r=brson 2012-12-13 13:05:22 -08:00
libstd Rename core::comm to core::oldcomm 2012-12-14 14:59:32 -08:00
libsyntax Begin renaming serialization to std::serialize. (snapshot) 2012-12-13 18:16:31 -08:00
libuv@1170ffba3a
llvm@accc36b3e3
rt Add license boilerplate to more files. 2012-12-10 17:32:58 -08:00
rustllvm Add license boilerplate to more files. 2012-12-10 17:32:58 -08:00
test Fix broken test 2012-12-14 15:38:53 -08:00
README.txt
snapshots.txt Register snapshots 2012-12-09 17:49:59 -08:00

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

Source layout:

librustc/          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

libcargo/          The package manager

librusti/          The JIT REPL

librustdoc/        The Rust API documentation tool

llvm/              The LLVM submodule

libuv/             The libuv submodule

rustllvm/          LLVM support code

libfuzzer/         A collection of fuzz testers

etc/               Scripts, editor support, misc