rust/src
gareth 04a39359f8 Rename unwrap_input/unwrap_output as suggested by
@brson. Also fix a few documentation bugs.
2013-05-27 13:50:33 +01:00
..
compiletest Refactor core::run in order to address many of the issues 2013-05-27 13:50:33 +01:00
driver libextra: Rename the actual metadata names of libcore to libstd and libstd to libextra 2013-05-22 21:57:07 -07:00
etc update ctags define 2013-05-27 13:58:27 +09:00
libextra Refactor core::run in order to address many of the issues 2013-05-27 13:50:33 +01:00
libfuzzer Refactor core::run in order to address many of the issues 2013-05-27 13:50:33 +01:00
librust Refactor core::run in order to address many of the issues 2013-05-27 13:50:33 +01:00
librustc Refactor core::run in order to address many of the issues 2013-05-27 13:50:33 +01:00
librustdoc Refactor core::run in order to address many of the issues 2013-05-27 13:50:33 +01:00
librusti cleanup warnings from librusti 2013-05-23 17:57:07 -07:00
librustpkg Refactor core::run in order to address many of the issues 2013-05-27 13:50:33 +01:00
libstd Rename unwrap_input/unwrap_output as suggested by 2013-05-27 13:50:33 +01:00
libsyntax auto merge of #6722 : alexcrichton/rust/issue-4219-no-merge-hack, r=brson 2013-05-25 15:13:54 -07:00
libuv@dfae9c3e95 libsyntax: Fix more merge fallout. 2013-05-22 21:57:11 -07:00
llvm@2e9f0d21fe
rt Fix compilation errors with linenoise 2013-05-25 00:40:12 -05:00
rustllvm rustllvm: Use target alignment for atomic load/store 2013-05-20 17:28:06 -07:00
test Refactor core::run in order to address many of the issues 2013-05-27 13:50:33 +01:00
README.txt
snapshots.txt Register snapshots 2013-05-19 23:34:32 -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