rust/src
2013-05-14 19:27:20 +09:00
..
compiletest Warning police 2013-05-11 20:36:44 -07:00
driver Don't create subprocesses for the rust command 2013-05-12 17:48:01 -04:00
etc
libcore auto merge of #6441 : alexcrichton/rust/issue-5531, r=luqmana 2013-05-14 00:46:48 -07:00
libfuzzer renamed str::from_slice to str::to_owned 2013-05-10 20:08:56 +09:00
librust Don't create subprocesses for the rust command 2013-05-12 17:48:01 -04:00
librustc Remove re-exports from libcore/core.rc 2013-05-13 18:51:40 -04:00
librustdoc librustdoc: Remove old-style extern mods from rustdoc tests. 2013-05-13 09:23:32 -07:00
librusti Remove the '<->' operator from the language 2013-05-10 22:51:06 -04:00
librustpkg Don't create subprocesses for the rust command 2013-05-12 17:48:01 -04:00
libstd libstd: impl Num for BigUint/BigInt 2013-05-14 19:27:20 +09:00
libsyntax libsyntax: Tighten up expressions in patterns to only allow identifiers or literals (possibly with a minus). 2013-05-12 16:35:19 -07:00
libuv@97ac7c087a Upgrade libuv 2013-05-13 19:29:19 -07:00
llvm@2e9f0d21fe
rt Correct #[always_inline] -> #[inline(always)] and __attribute((...)) -> __attribute__((...)). 2013-05-13 04:05:34 -04:00
rustllvm Adds atomic_load, atomic_load_acq, atomic_store, and atomic_store_rel intrinsics. 2013-05-12 23:23:40 +02:00
test auto merge of #6441 : alexcrichton/rust/issue-5531, r=luqmana 2013-05-14 00:46:48 -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