rust/src
Jack Moffitt 66e049e3af Change pkgid parser to allow overriding the inferred crate name.
Previously the a pkgid of `foo/rust-bar#1.0` implied a crate name of
`rust-bar` and didn't allow this to be overridden. Now you can override the
inferred crate name with `foo/rust-bar#bar:1.0`.
2013-12-17 07:41:39 -07:00
..
compiletest Fix #10754 - std::run functions fail after io_error 2013-12-14 12:50:04 -05:00
driver Make crate hash stable and externally computable. 2013-12-10 17:04:24 -07:00
etc Add "proc" as keyword to emacs mode 2013-12-14 18:00:21 -05:00
gyp@f407f09c94 Upgrade libuv to the current master (again) 2013-09-06 11:12:49 -07:00
libextra Register new snapshots 2013-12-15 22:17:59 -08:00
librustc auto merge of #10966 : michaelwoerister/rust/prelude2, r=cmr 2013-12-16 05:51:32 -08:00
librustdoc Register new snapshots 2013-12-15 22:17:59 -08:00
librustpkg Register new snapshots 2013-12-15 22:17:59 -08:00
librustuv Register new snapshots 2013-12-15 22:17:59 -08:00
libstd Spell out the units used for the offset argument, so that people do 2013-12-16 17:07:04 +01:00
libsyntax Change pkgid parser to allow overriding the inferred crate name. 2013-12-17 07:41:39 -07:00
libuv@3b89ea32c0 Upgrade libuv with an OSX build system fix 2013-12-11 10:36:38 -08:00
llvm@eac6ff795c Remove unused upcalls 2013-12-05 16:29:16 -08:00
rt Register new snapshots 2013-12-07 23:02:39 -08:00
rustllvm Disable all unwinding on -Z no-landing-pads LTO 2013-12-11 09:18:20 -08:00
test auto merge of #11000 : cmr/rust/auto_encode, r=alexcrichton 2013-12-16 09:06:38 -08:00
README.txt drop the linenoise library 2013-10-16 22:57:51 -04:00
snapshots.txt Register new snapshots 2013-12-15 22:17:59 -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