rust/src
bors 267f6c212f auto merge of #5285 : jld/rust/emacs-refix, r=brson
Without this change, rust-mode doesn't work if 'cl hasn't been required
by something else, apparently.  I'm not entirely sure what changed such
that I started seeing this problem instead of not, but maybe the emacs
world has been making progress towards not loading 'cl at runtime if
it's only needed at compile time.

(This change was previously submitted as e93a58d52 and accidentally reverted by ad8b437ad.)
2013-03-09 18:42:43 -08:00
..
compiletest librustc: Convert all uses of assert over to fail_unless! 2013-03-07 22:37:57 -08:00
driver Added rust convenience tool similar to go's go tool 2013-02-18 23:11:08 +01:00
etc auto merge of #5285 : jld/rust/emacs-refix, r=brson 2013-03-09 18:42:43 -08:00
libcore vec: cleanup 2013-03-09 16:53:39 -05:00
libfuzzer Finish de-implicit-selfing everything but the test suite 2013-03-08 19:34:39 -05:00
librust Finish de-implicit-selfing everything but the test suite 2013-03-08 19:34:39 -05:00
librustc Remove @ast::Region and replace with @ast::Lifetime. 2013-03-09 19:43:59 -05:00
librustdoc Finish de-implicit-selfing everything but the test suite 2013-03-08 19:34:39 -05:00
librusti Finish de-implicit-selfing everything but the test suite 2013-03-08 19:34:39 -05:00
librustpkg Finish de-implicit-selfing everything but the test suite 2013-03-08 19:34:39 -05:00
libstd Fix dvec-related fallout in tests 2013-03-08 09:56:52 -05:00
libsyntax Remove @ast::Region and replace with @ast::Lifetime. 2013-03-09 19:43:59 -05:00
libuv@218ab86721 Update uv submodule 2013-03-08 11:02:12 +09:00
llvm@accc36b3e3 llvm: fork to disable LiveIRVariabes in GCStrategy. 2012-11-14 18:21:09 -08:00
rt Merge remote-tracking branch 'brson/cross7' 2013-03-06 23:54:35 -08:00
rustllvm There is no function in LLVM called LLVMInitializeMipsAsmLexer 2013-03-03 20:02:06 -08:00
test Remove @ast::Region and replace with @ast::Lifetime. 2013-03-09 19:43:59 -05:00
README.txt Rename cargo to rustpkg and start over fresh 2013-02-15 18:04:10 -08:00
snapshots.txt Register FreeBSD snapshot 2013-03-01 17:23:25 -08: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