rust/src
Tim Chevalier 428c58b9f9 Forbid duplicate supertraits
I actually already pushed most of this by accident before I meant to, but
r=nmatsakis anyway.

Closes #3953
2012-11-16 15:12:14 -08:00
..
compiletest
driver Rename src/rustc to src/librustc. Use the driver crate 2012-11-07 13:53:39 -08:00
etc
libcargo library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as per #3543 2012-11-03 18:23:43 -07:00
libcore librustc: Fix cross-crate reexports. rs=blocking-servo 2012-11-15 17:15:02 -08:00
libfuzzer library-ifying of tools - turning cargo, rustdoc, fuzzer, into libraries, as per #3543 2012-11-03 18:23:43 -07:00
librustc Forbid duplicate supertraits 2012-11-16 15:12:14 -08:00
librustdoc librustc: Require the #[derivable] attribute, remove the significance of "impl Foo : Bar;", and allow only a subset of methods in a trait to be derived. r=brson 2012-11-14 11:36:55 -08:00
librusti Make std::rl unsafe. #3921 2012-11-05 11:20:44 -08:00
libstd Rename thread_pool to task_pool 2012-11-15 12:35:14 -08:00
libsyntax syntax: rename quote! to quote_tokens!, add quote_{expr,type,item,pat,stmt}! 2012-11-16 14:50:49 -08:00
libuv@1170ffba3a
llvm@accc36b3e3 llvm: fork to disable LiveIRVariabes in GCStrategy. 2012-11-14 18:21:09 -08:00
rt rt: Don't print backtraces unless the ::rt::backtrace log level is greater than log_err 2012-11-15 15:14:30 -08:00
rustllvm
test syntax: rename quote! to quote_tokens!, add quote_{expr,type,item,pat,stmt}! 2012-11-16 14:50:49 -08:00
README.txt
snapshots.txt Remove stage0 stuff that was awaiting snapshot 2012-11-03 14:04:32 -07:00

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

rusti/             The JIT REPL

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