rust/src
2013-02-15 02:49:55 -08:00
..
compiletest compiletest: Get rid of move. 2013-02-15 02:49:54 -08:00
driver librustc: Terminate name searches at the nearest module scope for paths that contain at least two components. r=graydon 2012-12-27 10:02:54 -08:00
etc made licenseck.py work for year substitutions 2013-02-14 11:20:40 +09:00
libcargo libcargo: Get rid of move. 2013-02-15 02:49:54 -08:00
libcore libcore: Get rid of move. 2013-02-15 02:49:54 -08:00
libfuzzer Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
librustc librustc: Get rid of move. 2013-02-15 02:49:55 -08:00
librustdoc librustdoc: Get rid of move. 2013-02-15 02:49:54 -08:00
librusti Remove die!, raplace invocations with fail! Issue #4524 pt 3 2013-02-13 17:01:32 -08:00
libstd libstd: Fix broken test. 2013-02-15 02:49:54 -08:00
libsyntax auto merge of #4941 : nickdesaulniers/rust/issue4524cleanup, r=catamorphism 2013-02-14 21:12:06 -08:00
libuv@da33bba7c0 build: change libuv to point at joyent's repo and make unpatched build libuv work on mingw 2013-02-10 11:51:05 -08:00
llvm@accc36b3e3
rt auto merge of #4938 : thestinger/rust/no_zero, r=brson 2013-02-14 18:27:54 -08:00
rustllvm Support ARM and Android 2013-01-13 16:43:39 -08:00
test libcore: Remove ptr::mut_addr_of since &mut is coerced to *mut 2013-02-14 18:36:10 -08:00
README.txt README.txt: Mention linenoise 2013-02-01 15:00:12 -08:00
snapshots.txt Register snapshots 2013-02-05 10:34:17 -08:00

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

libcargo/          The package manager

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