Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 1.11 KB

File metadata and controls

21 lines (14 loc) · 1.11 KB

The Rust Language Reference

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

Contributor docs

There are several pages for those working on the reference:

Running tests

There are several different kinds of tests you can run (these are enforced on CI):

  • mdbook test: This will run the inline Rust codeblocks (internally it uses rustdoc to do this).
  • cargo xtask style-check: This will validate some style checks (see authoring guide).
  • cargo xtask linkcheck: This will validate that markdown links aren't broken.
  • cargo xtask test-all: Runs all tests.