rust/src
bors 5f39d64f21 auto merge of #11342 : huonw/rust/trie-mut, r=alexcrichton
- Add `mut_iter`, `mut_lower_bound`, `mut_upper_bound`
- Remove some internal iterators
- Add benchmarks
- Improve performance of `{mut_,}{lower,upper}_bound`
- Minor clean-up of `extra::treemap` after I realised I wasn't exploiting macros to their full DRY potential.
2014-01-07 05:56:36 -08:00
..
compiletest
driver
etc auto merge of #11354 : brson/rust/versionwin, r=alexcrichton 2014-01-06 16:31:52 -08:00
gyp@1e46da1000
libextra auto merge of #11342 : huonw/rust/trie-mut, r=alexcrichton 2014-01-07 05:56:36 -08:00
libgreen
libnative Don't read forever on a file descriptor 2014-01-06 16:32:51 -08:00
librustc auto merge of #11347 : alexcrichton/rust/issue-11346, r=brson 2014-01-07 04:41:39 -08:00
librustdoc Disowned the Visitor. 2014-01-06 14:00:46 +02:00
librustpkg auto merge of #11327 : nielsle/rust/rustpkg_argparse, r=alexcrichton 2014-01-06 05:56:52 -08:00
librustuv
libstd auto merge of #11342 : huonw/rust/trie-mut, r=alexcrichton 2014-01-07 05:56:36 -08:00
libsyntax auto merge of #11332 : sfackler/rust/de-at-se, r=huonw 2014-01-06 07:26:48 -08:00
libuv@fd5308383c
llvm@8841dcef35
rt
rustllvm
test auto merge of #11347 : alexcrichton/rust/issue-11346, r=brson 2014-01-07 04:41:39 -08:00
README.txt
snapshots.txt

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