Skip to content

Commit 468cabf

Browse files
committed
Update README file for src/ directory
1 parent 918dbfe commit 468cabf

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

src/README.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,37 @@ Source layout:
55
| Path | Description |
66
| ------------------- | --------------------------------------------------------- |
77
| `librustc/` | The self-hosted compiler |
8+
| `liballoc/` | Rust's core allocation library |
9+
| `libcore/` | The Rust core library |
10+
| `libdebug/` | Debugging utilities |
811
| `libstd/` | The standard library (imported and linked by default) |
9-
| `libextra/` | The "extras" library (slightly more peripheral code) |
1012
| `libgreen/` | The M:N runtime library |
1113
| `libnative/` | The 1:1 runtime library |
1214
| `libsyntax/` | The Rust parser and pretty-printer |
13-
| `libcollections/` | A collection of useful data structures and containers |
14-
| `libnum/` | Extended number support library (complex, rational, etc) |
1515
| `libtest/` | Rust's test-runner code |
1616
| ------------------- | --------------------------------------------------------- |
1717
| `libarena/` | The arena (a fast but limited) memory allocator |
18+
| `libbacktrace/` | The libbacktrace library |
19+
| `libcollections/` | A collection of useful data structures and containers |
1820
| `libflate/` | Simple compression library |
21+
| `libfmt_macros/` | Macro support for format strings |
1922
| `libfourcc/` | Data format identifier library |
2023
| `libgetopts/` | Get command-line-options library |
2124
| `libglob/` | Unix glob patterns library |
25+
| `libgraphviz/` | Generating files for Graphviz |
26+
| `libhexfloat/` | Hexadecimal floating-point literals |
27+
| `liblibc/` | Bindings for the C standard library |
28+
| `liblog/` | Utilities for program-wide and customizable logging |
29+
| `libnum/` | Extended number support library (complex, rational, etc) |
30+
| `librand/` | Random numbers and distributions |
2231
| `libregex/` | Regular expressions |
32+
| `libregex_macros/` | The regex! syntax extension |
2333
| `libsemver/` | Rust's semantic versioning library |
2434
| `libserialize/` | Encode-Decode types library |
2535
| `libsync/` | Concurrency mechanisms and primitives |
2636
| `libterm/` | ANSI color library for terminals |
2737
| `libtime/` | Time operations library |
38+
| `liburl/` | URL handling lirary |
2839
| `libuuid/` | UUID's handling code |
2940
| ------------------- | --------------------------------------------------------- |
3041
| `rt/` | The runtime system |

0 commit comments

Comments
 (0)