@@ -20,13 +20,28 @@ series of small examples.
20
20
21
21
[ rbe ] : http://rustbyexample.com/
22
22
23
+ # Specification
24
+
25
+ Rust does not have an exact specification, but an effort to describe as much of
26
+ the language in as much detail as possible is in [ the reference] ( reference.html ) .
27
+
23
28
# The Standard Library
24
29
25
30
We have [ API documentation for the entire standard
26
31
library] ( std/index.html ) . There's a list of crates on the left with more
27
32
specific sections, or you can use the search bar at the top to search for
28
33
something if you know its name.
29
34
35
+ # Tools
36
+
37
+ Rust is still a young language, so there isn't a ton of tooling yet, but the
38
+ tools we have are really nice.
39
+
40
+ [ Cargo] ( https://crates.io ) is Rust's package manager, and its website contains
41
+ lots of good documentation.
42
+
43
+ [ ` rustdoc ` ] ( book/documentation.html ) is used to generate documentation for Rust code.
44
+
30
45
# Community & Getting Help
31
46
32
47
If you need help with something, or just want to talk about Rust with others,
@@ -54,25 +69,10 @@ There is an active [subreddit](https://reddit.com/r/rust) with lots of
54
69
discussion and news about Rust.
55
70
56
71
There is also a [ user forum] ( https://users.rust-lang.org ) , for all
57
- user-oriented discussion, and a [ developer
72
+ user-oriented discussion, and a [ developer
58
73
forum] ( https://internals.rust-lang.org/ ) , where the development of Rust
59
74
itself is discussed.
60
75
61
- # Specification
62
-
63
- Rust does not have an exact specification, but an effort to describe as much of
64
- the language in as much detail as possible is in [ the reference] ( reference.html ) .
65
-
66
- # Tools
67
-
68
- Rust is still a young language, so there isn't a ton of tooling yet, but the
69
- tools we have are really nice.
70
-
71
- [ Cargo] ( https://crates.io ) is Rust's package manager, and its website contains
72
- lots of good documentation.
73
-
74
- [ ` rustdoc ` ] ( book/documentation.html ) is used to generate documentation for Rust code.
75
-
76
76
# FAQs
77
77
78
78
There are questions that are asked quite often, so we've made FAQs for them:
0 commit comments