rust/src
Eric Holk 6748f78cb1 Polymorphic protocols work well enough to do MapReduce.
I did some horrible things with type variable naming here. It should do the right thing in most cases, but we'll need to go through and make it correct someday.
2012-07-25 12:12:26 -07:00
..
cargo More purity to make it easier to borrow strings in format strings. 2012-07-25 12:12:25 -07:00
compiletest
etc vim: Highlight "struct" 2012-07-24 21:09:42 -07:00
fuzzer
libcore Thread spans through the pipe compiler. They aren't perfect, but they make debugging far easier than core.rc:0:0. 2012-07-25 12:12:25 -07:00
libstd
libsyntax Polymorphic protocols work well enough to do MapReduce. 2012-07-25 12:12:26 -07:00
libuv@1170ffba3a
llvm@cc8c2479de Bump LLVM, clang and compiler-rt, integrating eds' work. 2012-07-24 17:11:13 -07:00
rt (minor) remove config_notify from rustrt.def.in 2012-07-25 13:29:50 -04:00
rustc adjust deprecated_use not to warn about sugared closures 2012-07-25 10:19:28 -07:00
rustdoc
rustllvm Remove rustllvm functions which have moved upstream. 2012-07-24 17:11:13 -07:00
test Polymorphic protocols work well enough to do MapReduce. 2012-07-25 12:12:26 -07:00
README.txt
snapshots.txt

This is 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

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