cargo/src/doc
Jonathan Claudius 0c3851c017
HTTPS all the things
2019-01-30 15:34:37 -05:00
..
man HTTPS all the things 2019-01-30 15:34:37 -05:00
src HTTPS all the things 2019-01-30 15:34:37 -05:00
theme Delete the old docs, lift up the new 2018-01-05 11:10:55 -08:00
Makefile Fix new man page links. 2018-12-18 12:06:58 -08:00
README.md doc: Replace 'shell' language labels (generally with 'console') 2018-01-08 14:48:45 -08:00
asciidoc-extension.rb New man pages. 2018-12-08 16:44:37 -08:00
book.toml Delete the old docs, lift up the new 2018-01-05 11:10:55 -08:00

README.md

The Cargo Book

Requirements

Building the book requires mdBook. To get it:

$ cargo install mdbook

Building

To build the book:

$ mdbook build

The output will be in the book subdirectory. To check it out, open it in your web browser.

Firefox:

$ firefox book/index.html                       # Linux
$ open -a "Firefox" book/index.html             # OS X
$ Start-Process "firefox.exe" .\book\index.html # Windows (PowerShell)
$ start firefox.exe .\book\index.html           # Windows (Cmd)

Chrome:

$ google-chrome book/index.html                 # Linux
$ open -a "Google Chrome" book/index.html       # OS X
$ Start-Process "chrome.exe" .\book\index.html  # Windows (PowerShell)
$ start chrome.exe .\book\index.html            # Windows (Cmd)

Contributing

Given that the book is still in a draft state, we'd love your help! Please feel free to open issues about anything, and send in PRs for things you'd like to fix or change. If your change is large, please open an issue first, so we can make sure that it's something we'd accept before you go through the work of getting a PR together.