rust/src
2014-01-01 23:50:11 -05:00
..
compiletest Test fixes and rebase conflicts 2013-12-25 23:10:46 -08:00
driver Remove references to rustdoc_ng 2013-12-31 14:50:38 -08:00
etc Fix rust-align-to-expr-after-brace, closes #11239. 2013-12-31 14:19:36 -05:00
gyp@1e46da1000 Update bundled gyp 2013-12-28 10:42:25 -08:00
libextra auto merge of #11208 : alexcrichton/rust/less-c, r=cmr 2013-12-31 09:51:50 -08:00
libgreen Move task count bookeeping out of libstd 2014-01-01 13:08:09 -08:00
libnative auto merge of #11212 : alexcrichton/rust/local-task-count, r=brson 2014-01-01 13:21:48 -08:00
librustc Fix typo in lint description. 2014-01-01 23:50:11 -05:00
librustdoc auto merge of #11255 : klutzy/rust/small-cleanup, r=pcwalton 2014-01-01 11:06:51 -08:00
librustpkg syntax::codemap: Add static DUMMY_SP 2014-01-01 19:51:35 +09:00
librustuv Convert some C functions to rust functions 2013-12-30 14:35:55 -08:00
libstd auto merge of #11242 : Dretch/rust/hashmap-key-value-iterators, r=pcwalton 2014-01-01 17:11:57 -08:00
libsyntax auto merge of #11255 : klutzy/rust/small-cleanup, r=pcwalton 2014-01-01 11:06:51 -08:00
libuv@fd5308383c Attempt to fix the segfaulting osx bots 2013-12-21 20:17:23 -08:00
llvm@8841dcef35 Update llvm. 2013-12-29 23:38:43 -05:00
rt Convert some C functions to rust functions 2013-12-30 14:35:55 -08:00
rustllvm auto merge of #11187 : alexcrichton/rust/once, r=brson 2013-12-31 20:41:56 -08:00
test syntax: expand impl_pretty_name to handle more cases. 2014-01-02 02:53:54 +11:00
README.txt
snapshots.txt Register new snapshots. 2013-12-29 14:06:34 -08:00

This is a preliminary version of the Rust compiler, libraries and tools

Source layout:

librustc/          The self-hosted compiler

libstd/            The standard library (imported and linked by default)
libextra/          The "extras" 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

librustpkg/        The package manager and build system

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