rust/src
2013-06-16 09:17:50 +12:00
..
compiletest add IteratorUtil to the prelude 2013-06-14 23:15:42 -04:00
driver
etc automated whitespace fixes 2013-06-13 18:03:08 -04:00
libextra auto merge of #7109 : bblum/rust/rwlocks, r=brson 2013-06-15 04:07:03 -07:00
libfuzzer Revert "std: convert {vec,str}::to_owned to methods." 2013-06-13 19:06:47 -07:00
librust add IteratorUtil to the prelude 2013-06-14 23:15:42 -04:00
librustc Move CrateContext into it's own file 2013-06-16 09:17:50 +12:00
librustdoc auto merge of #7130 : huonw/rust/rustdoc-highlight, r=thestinger 2013-06-15 05:49:02 -07:00
librusti auto merge of #7125 : alexcrichton/rust/rusti-issues, r=brson 2013-06-15 01:04:05 -07:00
librustpkg auto merge of #7148 : catamorphism/rust/rustpkg_tests, r=graydon 2013-06-15 08:12:57 -07:00
libstd auto merge of #7147 : huonw/rust/vec-connect, r=Aatch 2013-06-15 06:54:59 -07:00
libsyntax auto merge of #7121 : huonw/rust/rand-call, r=pnkfelix 2013-06-14 22:37:13 -07:00
libuv@dfae9c3e95
llvm@2e9f0d21fe
rt automated whitespace fixes 2013-06-13 18:03:08 -04:00
rustllvm auto merge of #7125 : alexcrichton/rust/rusti-issues, r=brson 2013-06-15 01:04:05 -07:00
test auto merge of #7121 : huonw/rust/rand-call, r=pnkfelix 2013-06-14 22:37:13 -07: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