Go to file
Havvy f74a2a6cc7 Clean up the theme files now that header.hbs is a thing.
No more having to track index.hbs between updates. \o/

There was an extra book.css in src/theme as far as I could tell.
2017-12-13 12:59:34 -08:00
src Clean up the theme files now that header.hbs is a thing. 2017-12-13 12:59:34 -08:00
stable-check Add license to stable check 2017-03-27 17:39:40 -04:00
theme Clean up the theme files now that header.hbs is a thing. 2017-12-13 12:59:34 -08:00
.gitattributes Fix tidy on Windows 2017-04-06 01:52:45 +03:00
.gitignore
.travis.yml Make sure we don't talk about unstable things 2017-03-23 16:31:29 -04:00
LICENSE-APACHE
LICENSE-MIT
README.md Added basic README.md with build instructions 2017-07-15 13:38:22 -03:00
book.toml Clean up the theme files now that header.hbs is a thing. 2017-12-13 12:59:34 -08: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.