-
Notifications
You must be signed in to change notification settings - Fork 290
Add README.md #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# The Rustonomicon | ||
|
||
The Dark Arts of Advanced and Unsafe Rust Programming | ||
|
||
Nicknamed "the Nomicon." | ||
|
||
## NOTE: This is a draft document, and may contain serious errors | ||
|
||
> Instead of the programs I had hoped for, there came only a shuddering blackness | ||
and ineffable loneliness; and I saw at last a fearful truth which no one had | ||
ever dared to breathe before — the unwhisperable secret of secrets — The fact | ||
that this language of stone and stridor is not a sentient perpetuation of Rust | ||
as London is of Old London and Paris of Old Paris, but that it is in fact | ||
quite unsafe, its sprawling body imperfectly embalmed and infested with queer | ||
animate things which have nothing to do with it as it was in compilation. | ||
|
||
This book digs into all the awful details that are necessary to understand in | ||
order to write correct Unsafe Rust programs. Due to the nature of this problem, | ||
it may lead to unleashing untold horrors that shatter your psyche into a billion | ||
infinitesimal fragments of despair. | ||
|
||
### Requirements | ||
|
||
Building the Nomicon requires [mdBook]. To get it: | ||
|
||
[mdBook]: https://github.com/azerupi/mdBook | ||
|
||
```bash | ||
$ cargo install mdbook | ||
``` | ||
|
||
### Building | ||
|
||
To build the Nomicon: | ||
|
||
```bash | ||
$ mdbook build | ||
``` | ||
|
||
The output will be in the `book` subdirectory. To check it out, open it in | ||
your web browser. | ||
|
||
_Firefox:_ | ||
```bash | ||
$ 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:_ | ||
```bash | ||
$ 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) | ||
``` | ||
|
||
To run the tests: | ||
|
||
```bash | ||
$ mdbook test | ||
``` | ||
|
||
## Contributing | ||
|
||
Given that the Nomicon 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. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It'd be cool if
mdbook build
had a--open
flag likerustdoc
so we didn't have to spell out how to open a world wide web browser from a command lineThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
iirc it does?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i copied this from the book, so, it might be wrong just because of that