rust/src
2012-06-29 15:41:56 -07:00
..
cargo Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. 2012-06-25 20:00:46 -07:00
compiletest Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. 2012-06-25 20:00:46 -07:00
etc update rust.vim to hilight foo::bar and more 2012-06-28 21:11:54 -04:00
fuzzer Don't use literal info from the original source when pretty printing expanded ASTs. 2012-06-28 15:33:15 -07:00
libcore core: str::as_slice is unneeded, yay! fixes std::net::tcp socket_buf test 2012-06-29 15:41:55 -07:00
libstd std: add test for net::ip::get_addr failure 2012-06-29 15:41:56 -07:00
libsyntax Refactor syntax exts some. Don't ever emit bare vectors. 2012-06-29 14:38:33 -07:00
libuv@1170ffba3a
llvm@3a57b672f8
rt rt: get rid of unused helpers for AF_INET and add bool-based ones, instead 2012-06-29 15:41:56 -07:00
rustc Merge branch 'master' of github.com:mozilla/rust into incoming 2012-06-28 17:30:36 -07:00
rustdoc Get rid of some spurious /~s in rustdoc. Oops. 2012-06-28 10:42:19 -07:00
rustllvm
test Get rid of basically all of the remaining old style vecs in tests. 2012-06-29 15:08:12 -07:00
README.txt Update READMEs and comments to reflect "rustsyntax" -> "syntax" change 2012-06-08 17:24:14 -07:00
snapshots.txt Register snapshots. 2012-06-29 15:33:52 -07:00

This is 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

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