rust/src
Alex Crichton bba701c59d std: Drop Total from Total{Eq,Ord}
This completes the last stage of the renaming of the comparison hierarchy of
traits. This change renames TotalEq to Eq and TotalOrd to Ord.

In the future the new Eq/Ord will be filled out with their appropriate methods,
but for now this change is purely a renaming change.

[breaking-change]
2014-06-01 10:31:27 -07:00
..
compiler-rt@ed112ca1e4
compiletest
doc auto merge of #14578 : huonw/rust/as_slice-cheatsheet, r=sfackler 2014-06-01 02:36:39 -07:00
driver
etc
gyp@1e46da1000
jemalloc@6a96910f2e
liballoc std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
libarena
libbacktrace
libcollections std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
libcore std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
libdebug
libflate
libfmt_macros std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
libfourcc
libgetopts
libglob std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
libgraphviz
libgreen
libhexfloat
liblibc
liblog
libnative
libnum std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
librand
libregex
libregex_macros
librlibc
librustc std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
librustdoc std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
librustuv doc: Fix a number of broken links 2014-05-31 21:59:50 -07:00
libsemver
libserialize std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
libstd std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
libsync
libsyntax std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
libterm
libtest std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
libtime std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
liburl std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
libuuid std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
libuv@43495892de
llvm@0a894645cf
rt
rustllvm
test std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00
README.md
snapshots.txt std: Drop Total from Total{Eq,Ord} 2014-06-01 10:31:27 -07:00

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

Source layout:

Path Description
librustc/ The self-hosted compiler
libstd/ The standard library (imported and linked by default)
libextra/ The "extras" library (slightly more peripheral code)
libgreen/ The M:N runtime library
libnative/ The 1:1 runtime library
libsyntax/ The Rust parser and pretty-printer
libcollections/ A collection of useful data structures and containers
libnum/ Extended number support library (complex, rational, etc)
libtest/ Rust's test-runner code
------------------- ---------------------------------------------------------
libarena/ The arena (a fast but limited) memory allocator
libflate/ Simple compression library
libfourcc/ Data format identifier library
libgetopts/ Get command-line-options library
libglob/ Unix glob patterns library
libregex/ Regular expressions
libsemver/ Rust's semantic versioning library
libserialize/ Encode-Decode types library
libsync/ Concurrency mechanisms and primitives
libterm/ ANSI color library for terminals
libtime/ Time operations library
libuuid/ UUID's handling code
------------------- ---------------------------------------------------------
rt/ The runtime system
rt/rust_*.c - Some of the runtime services
rt/vg - Valgrind headers
rt/msvc - MSVC support
rt/sundown - The Markdown library used by rustdoc
------------------- ---------------------------------------------------------
compiletest/ The test runner
test/ Testsuite
test/codegen - Tests for the LLVM IR infrastructure
test/compile-fail - Tests that should fail to compile
test/debug-info - Tests for the debuginfo tool
test/run-fail - Tests that should compile, run and fail
test/run-make - Tests that depend on a Makefile infrastructure
test/run-pass - Tests that should compile, run and succeed
test/bench - Benchmarks and miscellaneous
test/pretty - Pretty-printer tests
test/auxiliary - Dependencies of tests
------------------- ---------------------------------------------------------
librustdoc/ The Rust API documentation tool
libuv/ The libuv submodule
librustuv/ Rust libuv support code
------------------- ---------------------------------------------------------
llvm/ The LLVM submodule
rustllvm/ LLVM support code
------------------- ---------------------------------------------------------
etc/ Scripts, editors support, misc

NOTE: This list (especially the second part of the table which contains modules and libraries) is highly volatile and subject to change.