rust/src
Huon Wilson b95a8c63fd std::ascii: Provide a copyless [Ascii] -> str method.
This renames to_str_ascii to as_str_ascii and makes it non-copying,
which is possible now that strings no longer have a hidden extra
byte/null terminator.

Fixes #6120.
2013-11-08 10:20:06 +11:00
..
compiletest std::ascii: Provide a copyless [Ascii] -> str method. 2013-11-08 10:20:06 +11:00
driver remove rust and rusti from driver.rs 2013-10-19 13:31:39 +04:00
etc Fill out the remaining functionality in io::file 2013-11-03 15:15:42 -08:00
gyp@f407f09c94
libextra std::ascii: Provide a copyless [Ascii] -> str method. 2013-11-08 10:20:06 +11:00
librustc std::ascii: Provide a copyless [Ascii] -> str method. 2013-11-08 10:20:06 +11:00
librustdoc Move io::file to io::fs and fns out of File 2013-11-04 10:28:55 -08:00
librustpkg Allow --cfg on rustpkg test 2013-11-04 20:41:32 -08:00
librustuv Make TypeContents consider the type T to be reachable via *T pointers 2013-11-05 15:51:18 -05:00
libstd std::ascii: Provide a copyless [Ascii] -> str method. 2013-11-08 10:20:06 +11:00
libsyntax auto merge of #10285 : sfackler/rust/weird-derivings, r=huonw 2013-11-05 01:47:43 -08:00
libuv@d88cf5652a
llvm@c9ffab392a
rt auto merge of #10227 : kud1ing/rust/ios, r=alexcrichton 2013-11-06 14:01:14 -08:00
rustllvm add support for the cold function attribute 2013-10-28 15:34:50 -04:00
test std::ascii: Provide a copyless [Ascii] -> str method. 2013-11-08 10:20:06 +11:00
README.txt drop the linenoise library 2013-10-16 22:57:51 -04:00
snapshots.txt Register new snapshots 2013-11-06 20:24:36 -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