rust/src
2012-12-08 23:40:17 -08:00
..
compiletest Update license, add license boilerplate to most files. Remainder will follow. 2012-12-03 17:12:14 -08:00
driver Update license, add license boilerplate to most files. Remainder will follow. 2012-12-03 17:12:14 -08:00
etc librustc: Propagate type uses correctly from method calls to the containing functions. rs=bugfix 2012-12-06 19:11:51 -08:00
libcargo Update license, add license boilerplate to most files. Remainder will follow. 2012-12-03 17:12:14 -08:00
libcore libcore: Fix Windows-only pattern in run.rs. rs=bustage 2012-12-07 21:52:39 -08:00
libfuzzer Update license, add license boilerplate to most files. Remainder will follow. 2012-12-03 17:12:14 -08:00
librustc Print out a more helpful type error message for do-blocks/for-loops 2012-12-08 23:04:38 -08:00
librustdoc librustc: Hook borrow check loan checking up to the moves-based-on-type infrastructure. rs=helps-unbreak-the-build 2012-12-05 15:07:48 -08:00
librusti Long lines 2012-12-07 15:08:09 -08:00
libstd Make short flags with a single-char arg work in getopts 2012-12-07 20:38:40 -08:00
libsyntax librustc: De-mode pattern bindings. r=nmatsakis 2012-12-07 19:34:57 -08:00
libuv@1170ffba3a
llvm@accc36b3e3
rt Remove bogus FIXME, closes #2889 2012-12-06 16:14:54 -08:00
rustllvm
test Update and un-xfail crate-method-reexport-grrrrrrr2 2012-12-08 23:40:17 -08:00
README.txt Update src/README.txt 2012-11-29 14:24:33 +05:30
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:

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