rust/src
2013-06-12 20:53:40 -04:00
..
compiletest std: convert str::replace to a method. 2013-06-12 12:21:04 +10:00
driver
etc
libextra remove bitrotted cant_nest field from RWARC (the #[mutable] tag suffices) 2013-06-12 20:53:40 -04:00
libfuzzer Visitor refactoring: Step 1, couple (Env, vt<Env>) together in a tuple. 2013-06-12 13:04:37 +02:00
librust Silence some warnings. 2013-06-12 12:21:05 +10:00
librustc auto merge of #7091 : msullivan/rust/default-methods, r=graydon 2013-06-12 16:25:34 -07:00
librustdoc Silence some warnings. 2013-06-12 12:21:05 +10:00
librusti std: remove substr & str::count_*, methodise char_len, implement slice_chars. 2013-06-12 12:21:04 +10:00
librustpkg Silence some warnings. 2013-06-12 12:21:05 +10:00
libstd Document unstable::atomics fetch_* return values 2013-06-12 20:53:40 -04:00
libsyntax Fix a test-predicated use of the visit.rs api. 2013-06-12 23:31:07 +02:00
libuv@dfae9c3e95
llvm@2e9f0d21fe
rt auto merge of #7033 : influenza/rust/rust-7022, r=graydon 2013-06-11 14:40:48 -07:00
rustllvm Have JIT execution take ownership of the LLVMContextRef 2013-06-10 13:17:04 -07:00
test Fix a lot of the handling of default methods and type parameters. Closes #4099, #4102. 2013-06-12 13:50:45 -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