rust/src
2013-03-09 17:40:59 -08:00
..
compiletest
driver
etc kate: remove assert keyword 2013-03-09 12:23:33 -05:00
libcore core: implement Clone for primitive types 2013-03-09 12:14:12 -05:00
libfuzzer Finish de-implicit-selfing everything but the test suite 2013-03-08 19:34:39 -05:00
librust Finish de-implicit-selfing everything but the test suite 2013-03-08 19:34:39 -05:00
librustc Don't copy const data to do an autoderef+autoref. 2013-03-09 17:40:59 -08:00
librustdoc Finish de-implicit-selfing everything but the test suite 2013-03-08 19:34:39 -05:00
librusti Finish de-implicit-selfing everything but the test suite 2013-03-08 19:34:39 -05:00
librustpkg Finish de-implicit-selfing everything but the test suite 2013-03-08 19:34:39 -05:00
libstd Fix dvec-related fallout in tests 2013-03-08 09:56:52 -05:00
libsyntax Don't print addr_of(addr_of(e)) as &&e, which means something else. 2013-03-09 17:40:59 -08:00
libuv@218ab86721
llvm@accc36b3e3
rt
rustllvm
test Don't copy const data to do an autoderef+autoref. 2013-03-09 17:40:59 -08:00
README.txt
snapshots.txt

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
rt/linenoise       - a readline-like line editing library

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

librustpkg/        The package manager and build system

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