rust/src
Tim Chevalier 0e35391468 Merge pull request #4250 from thestinger/vim
update after/syntax/rust.vim for removal of <-
2012-12-23 13:45:56 -08:00
..
compiletest Add license boilerplate to more files. 2012-12-10 17:32:58 -08:00
driver Update license, add license boilerplate to most files. Remainder will follow. 2012-12-03 17:12:14 -08:00
etc update after/syntax/rust.vim for removal of <- 2012-12-21 21:37:32 -05:00
libcargo librustc: Make use statements crate-relative by default. r=brson 2012-12-13 13:05:22 -08:00
libcore core: Add a Zero and One trait to num 2012-12-20 07:15:04 -08:00
libfuzzer Update license, add license boilerplate to most files. Remainder will follow. 2012-12-03 17:12:14 -08:00
librustc Remove the cfg(stageN)-specific serialize code. 2012-12-20 12:52:53 -08:00
librustdoc Change iter::find's closure to take a ref 2012-12-17 22:01:38 -08:00
librusti rusti: Perform mode computation. Closes #4230. 2012-12-21 22:39:42 -05:00
libstd Merge pull request #4251 from erickt/url 2012-12-23 13:45:31 -08:00
libsyntax Remove serialize::traits submodule. 2012-12-19 18:16:20 -08:00
libuv@1170ffba3a
llvm@accc36b3e3
rt Whitespace 2012-12-15 23:03:45 -08:00
rustllvm rustllvm: Fix symbol resolution on Mac for rusti. rs=bugfix 2012-12-22 16:24:19 -05:00
test Remove xfail-fast from trait-composition-trivial 2012-12-23 00:24:07 -08:00
README.txt Update src/README.txt 2012-11-29 14:24:33 +05:30
snapshots.txt Register snapshots 2012-12-20 12:49:37 -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