Go to file
Mazdak Farrokhzad 6a04611da8
Merge pull request #707 from mattheww/2019-11_no_implicit_prelude
State that no_implicit_prelude also applies to nested modules
2019-11-04 10:03:43 +01:00
.github/workflows github action doesn't use the nursery 2019-10-30 08:15:47 -05:00
src Merge pull request #707 from mattheww/2019-11_no_implicit_prelude 2019-11-04 10:03:43 +01:00
stable-check Fix warning in stable-check 2019-08-15 04:56:55 +02:00
tests Fix tidy error. 2019-03-21 14:37:30 -07:00
theme Remove the warning that appears on every page. 2019-09-26 09:07:43 -07:00
.gitattributes Fix tidy on Windows 2017-04-06 01:52:45 +03:00
.gitignore Start the port of the reference to mdBook 2017-03-02 14:57:36 -08:00
CONTRIBUTING.md Some minor contributing updates. 2019-03-19 14:51:09 -07:00
LICENSE-APACHE
LICENSE-MIT
README.md Added basic README.md with build instructions 2017-07-15 13:38:22 -03:00
book.toml Update to mdbook 0.3. 2019-07-15 16:51:25 -07:00
reference.md Redirect to the new reference 2017-03-02 14:57:38 -08:00

README.md

The Rust Language Reference

This document is the primary reference for the Rust programming language.

This document is not normative. It may include details that are specific to rustc itself, and should not be taken as a specification for the Rust language. We intend to produce such a document someday, but this is what we have for now.

Dependencies

  • rustc (the Rust compiler).
  • mdbook (use cargo install mdbook to install it).

Build steps

First, go to the repository folder and test the code snippets to catch compilation errors:

cd reference
mdbook test

And then generate the book:

mdbook build

The generated HTML will be in the docs folder.