0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-11-30 11:53:52 +01:00
rust/src
Tim Chevalier 55ca36196d Merge pull request #4026 from eholk/float-perf
Inline numeric operations for floats.
2012-11-24 09:01:23 -08:00
..
compiletest rustc: Implement explicit self for Eq and Ord. r=graydon 2012-11-19 15:33:11 -08:00
driver
etc
libcargo rustc: Implement explicit self for Eq and Ord. r=graydon 2012-11-19 15:33:11 -08:00
libcore Merge pull request #4026 from eholk/float-perf 2012-11-24 09:01:23 -08:00
libfuzzer rustc: Implement explicit self for Eq and Ord. r=graydon 2012-11-19 15:33:11 -08:00
librustc Implement LUB algorithm and add new unit-testing infrastructure for infer. 2012-11-24 09:53:39 -05:00
librustdoc rustdoc: Fix build error 2012-11-21 11:25:01 -08:00
librusti Long lines 2012-11-19 18:02:29 -08:00
libstd std: try to fix breakage. 2012-11-22 23:32:30 -08:00
libsyntax libsyntax: Implement deriving correctly for type-parameterized structs and enums. r=brson 2012-11-21 10:27:37 -08:00
libuv@1170ffba3a
llvm@accc36b3e3 llvm: fork to disable LiveIRVariabes in GCStrategy. 2012-11-14 18:21:09 -08:00
rt rt: Don't print backtraces unless the ::rt::backtrace log level is greater than log_err 2012-11-15 15:14:30 -08:00
rustllvm
test Implement LUB algorithm and add new unit-testing infrastructure for infer. 2012-11-24 09:53:39 -05:00
README.txt
snapshots.txt Back out (apparently) non-bootstrap-capable snapshots. Uh oh. 2012-11-22 18:38:21 -08:00

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

Source layout:

rustc/             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

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

cargo/             The package manager

rusti/             The JIT REPL

rustdoc/           The Rust API documentation tool

llvm/              The LLVM submodule

libuv/             The libuv submodule

rustllvm/          LLVM support code

fuzzer/            A collection of fuzz testers

etc/               Scripts, editor support, misc