Go to file
Yuki Okushi 1995d18b04 Update organization name
Replace `rust-lang-nursery` with `rust-lang`
2019-11-07 08:59:05 +09:00
.github/workflows github action doesn't use the nursery 2019-10-30 08:15:47 -05:00
src Update organization name 2019-11-07 08:59:05 +09:00
stable-check
tests
theme
.gitattributes
.gitignore
CONTRIBUTING.md Update organization name 2019-11-07 08:59:05 +09:00
LICENSE-APACHE
LICENSE-MIT
README.md
book.toml Update organization name 2019-11-07 08:59:05 +09:00
reference.md

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.