Revert #286: Add C-string literals.

This reverts commit 5a4e7bae7205053f7f4716443fbf0f3d1eb424dc, reversing
changes made to 34fca48ed284525b2f124bf93c51af36d6685492.

This is being reverted in https://github.com/rust-lang/rust/pull/119528
2 files changed
tree: a423622a6657e65e830c4eec4cf7f4826efdc1ad
  1. .github/
  2. src/
  3. .gitattributes
  4. .gitignore
  5. book.toml
  6. LICENSE-APACHE
  7. LICENSE-MIT
  8. README.md
  9. triagebot.toml
README.md

The Rust Edition Guide

This book explains the concept of “editions”, major new eras in Rust's development. You can read the book online.

License

The Rust Edition Guide is dual licensed under MIT/Apache2, just like Rust itself. See the LICENSE-* files in this repository for more details.

Building locally

You can also build the book and read it locally if you'd like.

Requirements

Building the book requires mdBook 0.4. To get it:

$ cargo install mdbook

Building

The most straight-forward way to build and view the book locally is to use the following command:

$ mdbook serve --open

This builds the HTML version of the book, starts a webserver at http://localhost:3000, and opens your default web browser. It will also automatically rebuild the book whenever the source changes, and the page should automatically reload.

To run the tests:

$ mdbook test