rust/src
bors bf748e5001 auto merge of #6241 : thestinger/rust/rc, r=pcwalton
To provide a reference counted pointer type with deterministic
destruction once managed boxes are switched over to a garbage
collector. Unlike managed boxes, these can be moved instead of just
copied/cloned which is helpful for avoiding reference counts.

Needs #5601 to be fixed in order for safety to be provided without the current ugly workaround of making the pointers contain `Option<@()>` and `Option<@mut ()>` (which are just set to `None`).

@brson: r?
2013-05-06 22:00:37 -07:00
..
compiletest auto merge of #6150 : yichoi/rust/arm-test-pull, r=brson 2013-05-06 13:15:38 -07:00
driver
etc add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
libcore auto merge of #6228 : brson/rust/run-destroy, r=brson 2013-05-06 20:12:37 -07:00
libfuzzer
librust
librustc appease the tidy gods with respect to a FIXME 2013-05-06 20:27:59 -04:00
librustdoc add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
librusti
librustpkg auto merge of #6230 : thestinger/rust/whitespace, r=catamorphism 2013-05-04 00:48:37 -07:00
libstd auto merge of #6241 : thestinger/rust/rc, r=pcwalton 2013-05-06 22:00:37 -07:00
libsyntax Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze 2013-05-06 16:10:31 -04:00
libuv@218ab86721
llvm@2e9f0d21fe
rt add rust_take_task_borrow_list and rust_set_task_borrow_list to rustrt.def.in 2013-05-06 20:10:19 -04:00
rustllvm add gitattributes and fix whitespace issues 2013-05-03 20:01:42 -04:00
test auto merge of #6228 : brson/rust/run-destroy, r=brson 2013-05-06 20:12:37 -07:00
README.txt
snapshots.txt Register snapshots 2013-05-04 15:43:51 -07:00

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