This repository has been archived by the owner on Apr 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from mitchmindtree/wgpu
Update guide for recent trasition from vulkano to wgpu
- Loading branch information
Showing
7 changed files
with
190 additions
and
189 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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,25 @@ | ||
# Updating nannou | ||
|
||
You can update to a new version of nannou by editing your `Cargo.toml` file to | ||
use the new crate. For version 0.12 add the line | ||
|
||
```toml | ||
nannou = "0.12" | ||
``` | ||
|
||
Then within the nannou directory run the following to update all dependencies: | ||
|
||
```bash | ||
cargo update | ||
``` | ||
|
||
## Updating Rust. | ||
|
||
From time to time, a nannou update might require features from a newer version | ||
of rustc. For example, nannou 0.12 is known to require at least rustc 1.35.0. In | ||
these cases, you can update your rust toolchain to the latest version by running | ||
the following: | ||
|
||
```bash | ||
rustup update | ||
``` |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.