Skip to content

Update README file for src/ directory #14621

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 3, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,37 @@ Source layout:
| Path | Description |
| ------------------- | --------------------------------------------------------- |
| `librustc/` | The self-hosted compiler |
| `liballoc/` | Rust's core allocation library |
| `libcore/` | The Rust core library |
| `libdebug/` | Debugging utilities |
| `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 |
| `libbacktrace/` | The libbacktrace library |
| `libcollections/` | A collection of useful data structures and containers |
| `libflate/` | Simple compression library |
| `libfmt_macros/` | Macro support for format strings |
| `libfourcc/` | Data format identifier library |
| `libgetopts/` | Get command-line-options library |
| `libglob/` | Unix glob patterns library |
| `libgraphviz/` | Generating files for Graphviz |
| `libhexfloat/` | Hexadecimal floating-point literals |
| `liblibc/` | Bindings for the C standard library |
| `liblog/` | Utilities for program-wide and customizable logging |
| `libnum/` | Extended number support library (complex, rational, etc) |
| `librand/` | Random numbers and distributions |
| `libregex/` | Regular expressions |
| `libregex_macros/` | The regex! syntax extension |
| `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 |
| `liburl/` | URL handling lirary |
| `libuuid/` | UUID's handling code |
| ------------------- | --------------------------------------------------------- |
| `rt/` | The runtime system |
Expand Down