rust/src
Huon Wilson 49cdf36d2b libcore: from_str_common: correctly signal failure on repeating base 2^n numbers.
A number like 0b1_1111_1111 == 511 would be parsed to Some(255u8) rather than None
by from_str_common, since 255 * 2 + 1 == 255 (mod 256) so the overflow wasn't detected.

Only applied to conversions where the radix was a power of 2, and where all digits
repeated.

Closes #5770.
2013-04-08 16:35:39 +10:00
..
compiletest Fix compiletest on windows 2013-04-03 11:54:49 -07:00
driver
etc tidy version numbers and copyright dates 2013-04-01 16:15:49 -07:00
libcore libcore: from_str_common: correctly signal failure on repeating base 2^n numbers. 2013-04-08 16:35:39 +10:00
libfuzzer
librust src/librust/rust.rc: Fixes typo 'an executable' vs 'a executable' 2013-04-04 20:49:56 +02:00
librustc auto merge of #5757 : dbaupp/rust/rustc-fixed-vector-pprint, r=thestinger 2013-04-06 02:12:45 -07:00
librustdoc Fix various warnings, NOTEs, etc 2013-04-05 05:36:03 -04:00
librusti
librustpkg rename Linear{Map,Set} => Hash{Map,Set} 2013-04-03 10:30:36 -04:00
libstd libstd: make complex.rs XXX's into issues and FIXME's 2013-04-05 19:26:58 +11:00
libsyntax Fix various warnings, NOTEs, etc 2013-04-05 05:36:03 -04:00
libuv@218ab86721
llvm@accc36b3e3
rt Fix various warnings, NOTEs, etc 2013-04-05 05:36:03 -04:00
rustllvm rustllvm: Only initialize command-line arguments once 2013-04-05 17:18:26 -07:00
test auto merge of #5757 : dbaupp/rust/rustc-fixed-vector-pprint, r=thestinger 2013-04-06 02:12: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