2012-10-05 04:18:11 -06:00
|
|
|
This is a preliminary version of the Rust compiler, libraries and tools
|
2010-06-23 21:03:09 -07:00
|
|
|
|
|
|
|
Source layout:
|
|
|
|
|
2012-11-29 14:24:33 +05:30
|
|
|
librustc/ The self-hosted compiler
|
2010-06-23 21:03:09 -07:00
|
|
|
|
2011-12-07 15:34:30 -08:00
|
|
|
libcore/ The core library (imported and linked by default)
|
|
|
|
libstd/ The standard library (slightly more peripheral code)
|
2012-06-08 17:13:56 -07:00
|
|
|
libsyntax/ The Rust parser and pretty-printer
|
2011-06-26 22:27:22 -07:00
|
|
|
|
2010-06-23 21:03:09 -07:00
|
|
|
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
|
2012-04-09 14:03:48 -07:00
|
|
|
rt/sync - Concurrency utils
|
|
|
|
rt/util - Small utility classes for the runtime.
|
|
|
|
rt/vg - Valgrind headers
|
|
|
|
rt/msvc - MSVC support
|
2013-02-01 15:00:12 -08:00
|
|
|
rt/linenoise - a readline-like line editing library
|
2010-06-23 21:03:09 -07:00
|
|
|
|
2011-06-26 22:27:22 -07:00
|
|
|
test/ Testsuite
|
2010-06-23 21:03:09 -07:00
|
|
|
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
|
2011-03-12 01:40:32 -05:00
|
|
|
test/bench - Benchmarks and miscellanea
|
2012-04-09 14:03:48 -07:00
|
|
|
test/pretty - Pretty-printer tests
|
|
|
|
test/auxiliary - Dependencies of tests
|
|
|
|
|
|
|
|
compiletest/ The test runner
|
|
|
|
|
2012-11-29 14:24:33 +05:30
|
|
|
libcargo/ The package manager
|
2012-04-09 14:03:48 -07:00
|
|
|
|
2012-11-29 14:24:33 +05:30
|
|
|
librusti/ The JIT REPL
|
2012-10-03 11:15:02 +10:00
|
|
|
|
2012-11-29 14:24:33 +05:30
|
|
|
librustdoc/ The Rust API documentation tool
|
2012-04-09 14:03:48 -07:00
|
|
|
|
|
|
|
llvm/ The LLVM submodule
|
|
|
|
|
|
|
|
libuv/ The libuv submodule
|
|
|
|
|
|
|
|
rustllvm/ LLVM support code
|
|
|
|
|
2012-11-29 14:24:33 +05:30
|
|
|
libfuzzer/ A collection of fuzz testers
|
2010-06-23 21:03:09 -07:00
|
|
|
|
2012-04-09 14:03:48 -07:00
|
|
|
etc/ Scripts, editor support, misc
|