rust/src
bors 300ba1cc5c auto merge of #8050 : msullivan/rust/cleanup, r=graydon
And a couple other things. Fix up some unused variable warnings, and improve the camel case lint message a little.
2013-07-26 21:43:38 -07:00
..
compiletest auto merge of #7979 : crnobog/rust/auxfiles-path-windows, r=cmr 2013-07-26 17:49:40 -07:00
driver
etc auto merge of #8031 : graydon/rust/emacs-mode-rewrite, r=catamorphism 2013-07-26 02:04:50 -07:00
libextra auto merge of #8015 : msullivan/rust/default-methods, r=nikomatsakis 2013-07-25 03:07:44 -07:00
librust Change 'print(fmt!(...))' to printf!/printfln! in src/lib* 2013-07-24 09:45:20 -04:00
librustc Eliminate unused variable warnings. 2013-07-26 16:42:03 -07:00
librustdoc Change 'print(fmt!(...))' to printf!/printfln! in src/lib* 2013-07-24 09:45:20 -04:00
librusti Change 'print(fmt!(...))' to printf!/printfln! in src/lib* 2013-07-24 09:45:20 -04:00
librustpkg auto merge of #7996 : erickt/rust/cleanup-strs, r=erickt 2013-07-24 13:25:36 -07:00
libstd auto merge of #7986 : alexcrichton/rust/raw-repr, r=brson 2013-07-26 19:46:36 -07:00
libsyntax auto merge of #8037 : graydon/rust/issue-6416, r=cmr 2013-07-26 06:13:53 -07:00
libuv@dfae9c3e95
llvm@2e9f0d21fe
rt rm unused upcall_exchange_free 2013-07-24 18:44:16 -04:00
rustllvm
test auto merge of #8050 : msullivan/rust/cleanup, r=graydon 2013-07-26 21:43:38 -07:00
README.txt
snapshots.txt Register snapshots. 2013-07-26 20:43:18 -07: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
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