Go to file
steveklabnik e6a5d5d10a fix issue with header
theme needs to be src/theme not top-level theme
2018-01-29 16:17:44 -05:00
src fix issue with header 2018-01-29 16:17:44 -05:00
stable-check Add license to stable check 2017-03-27 17:39:40 -04:00
.gitattributes Fix tidy on Windows 2017-04-06 01:52:45 +03:00
.gitignore
.travis.yml Update mdbook repo 2018-01-22 15:05:32 -08:00
CONTRIBUTING.md Add contributing document. 2018-01-10 20:28:15 -08:00
LICENSE-APACHE
LICENSE-MIT
README.md Added basic README.md with build instructions 2017-07-15 13:38:22 -03:00
book.toml fix issue with header 2018-01-29 16:17:44 -05: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.