rust/src
Huon Wilson a7719a7347 Expand the testing guide to cover optimizations, benchmarks and how to
be more precise about what's being benchmarked.

Also, reorganise the layout a bit, to put examples directly in their
sections.
2014-02-09 16:16:00 +11:00
..
compiletest auto merge of #12020 : alexcrichton/rust/output-flags, r=brson 2014-02-06 12:41:30 -08:00
doc Expand the testing guide to cover optimizations, benchmarks and how to 2014-02-09 16:16:00 +11:00
driver Remove rustpkg. 2014-02-02 03:08:56 -05:00
etc Update docs and tests for #[deriving(Show)]. 2014-02-08 13:53:21 +11:00
gyp@1e46da1000 Update bundled gyp 2013-12-28 10:42:25 -08:00
libarena arena: use the generic bh.iter to stop the benchmarks being DCE'd. 2014-02-09 12:31:45 +11:00
libcollections moved collections from libextra into libcollections 2014-02-07 19:49:26 +13:00
libextra extra::test: add an opaque function to assist with accurate 2014-02-09 12:02:03 +11:00
libflate Remove Times trait 2014-01-30 14:52:25 +11:00
libgetopts getopts: fixed a failing test 2014-02-06 10:04:26 -08:00
libglob glob: Remove io_error usage 2014-02-03 09:32:34 -08:00
libgreen Add some doc examples to lib{green,native} 2014-02-06 16:45:22 -08:00
libnative Add some doc examples to lib{green,native} 2014-02-06 16:45:22 -08:00
librustc auto merge of #12096 : brson/rust/morestack-addr, r=thestinger 2014-02-08 01:56:30 -08:00
librustdoc std::fmt: convert the formatting traits to a proper self. 2014-02-08 13:53:21 +11:00
librustuv Implement clone() for TCP/UDP/Unix sockets 2014-02-05 11:43:49 -08:00
libsemver std::fmt: convert the formatting traits to a proper self. 2014-02-08 13:53:21 +11:00
libserialize pull extra::{serialize, ebml} into a separate libserialize crate 2014-02-05 10:38:22 -08:00
libstd auto merge of #12096 : brson/rust/morestack-addr, r=thestinger 2014-02-08 01:56:30 -08:00
libsync move concurrent stuff from libextra to libsync 2014-02-05 11:56:04 -05:00
libsyntax auto merge of #12086 : huonw/rust/safe-json, r=kballard 2014-02-08 00:26:30 -08:00
libterm Fixing remaining warnings and errors throughout 2014-02-03 10:39:23 -08:00
libuuid pull extra::{serialize, ebml} into a separate libserialize crate 2014-02-05 10:38:22 -08:00
libuv@fd5308383c Attempt to fix the segfaulting osx bots 2013-12-21 20:17:23 -08:00
llvm@e1dabb48f0 Upgrade LLVM 2014-01-29 23:43:39 -08:00
rt std: Hardcode pthread constants and structures 2014-02-03 12:04:30 -08:00
rustllvm auto merge of #11853 : alexcrichton/rust/up-llvm, r=brson 2014-01-29 23:46:26 -08:00
test auto merge of #12096 : brson/rust/morestack-addr, r=thestinger 2014-02-08 01:56:30 -08:00
README.md Remove rustpkg. 2014-02-02 03:08:56 -05:00
snapshots.txt Register new snapshots 2014-02-04 00:06:08 -08:00

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

Source layout:

Path Description
librustc/ The self-hosted compiler
libstd/ The standard library (imported and linked by default)
libextra/ The "extras" library (slightly more peripheral code)
libgreen/ The M:N runtime library
libnative/ The 1:1 runtime library
libsyntax/ The Rust parser and pretty-printer
------------------- ---------------------------------------------------------
rt/ The runtime system
rt/rust_*.c - Some of the runtime services
rt/vg - Valgrind headers
rt/msvc - MSVC support
rt/sundown - The Markdown library used by rustdoc
------------------- ---------------------------------------------------------
compiletest/ The test runner
test/ Testsuite
test/codegen - Tests for the LLVM IR infrastructure
test/compile-fail - Tests that should fail to compile
test/debug-info - Tests for the debuginfo tool
test/run-fail - Tests that should compile, run and fail
test/run-make - Tests that depend on a Makefile infrastructure
test/run-pass - Tests that should compile, run and succeed
test/bench - Benchmarks and miscellaneous
test/pretty - Pretty-printer tests
test/auxiliary - Dependencies of tests
------------------- ---------------------------------------------------------
librustdoc/ The Rust API documentation tool
libuv/ The libuv submodule
------------------- ---------------------------------------------------------
llvm/ The LLVM submodule
rustllvm/ LLVM support code
------------------- ---------------------------------------------------------
etc/ Scripts, editors support, misc