rust/src
Brian Anderson ce8023b9ac Merge pull request #2139 from Jonanin/add_str_len
Add len to str extensions
2012-04-05 23:49:55 -07:00
..
cargo Explicitly use version 0.2 of crates 2012-04-05 20:29:42 -07:00
compiletest handle the case where multiple instances of same error are expected on the same line 2012-04-05 21:16:28 -07:00
etc utilities for indented logs 2012-04-05 21:16:28 -07:00
fuzzer Explicitly use version 0.2 of crates 2012-04-05 20:29:42 -07:00
libcore Merge pull request #2139 from Jonanin/add_str_len 2012-04-05 23:49:55 -07:00
librustsyntax add static region and also fix regions to be contravariant 2012-04-05 21:16:28 -07:00
libstd Explicitly use version 0.2 of crates 2012-04-05 20:29:42 -07:00
libuv@1170ffba3a rustc: Don't generate landing pad cleanups for boxy things 2012-03-29 16:43:18 -07:00
llvm@4119fda4c6 Upgrade LLVM and add fix to PE/COFF relocation overflow handling. 2012-03-14 20:11:14 -07:00
rt rt: Add architecture-specific general-purpose register definitions 2012-04-04 21:40:34 -07:00
rustc add static region and also fix regions to be contravariant 2012-04-05 21:16:28 -07:00
rustdoc Explicitly use version 0.2 of crates 2012-04-05 20:29:42 -07:00
rustllvm Upgrade LLVM and add fix to PE/COFF relocation overflow handling. 2012-03-14 20:11:14 -07:00
test add static region and also fix regions to be contravariant 2012-04-05 21:16:28 -07:00
README.txt The compiler is now in src/rustc 2012-03-10 02:51:38 +01:00
snapshots.txt new snapshot 2012-04-04 19:17:06 -07:00

This is preliminary version of the Rust compiler.

Source layout:

rustc/             The self-hosted compiler

cargo/             The package manager

libcore/           The core library (imported and linked by default)
libstd/            The standard library (slightly more peripheral code)

rustllvm/          LLVM support code

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/libuv           - The library used for async IO in the runtime
rt/{sync,util}     - Small utility classes for the runtime.

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

Please be gentle, it's a work in progress.