-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixes the issue described in [Duplicate the rust-toolchain file so the crate can be published #51](#51). * Fixes the bizarre linker error that prevented a proper Rust update in [Update rust-toolchain and dependencies #50](#50). * Updates all packages to Edition 2021. * Moves all examples to the `rrt0` repo. Since that code is not intended to be built on a build platform like Linux, macOS, or Windows.
- Loading branch information
Showing
25 changed files
with
43 additions
and
356 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,9 +1,25 @@ | ||
[workspace] | ||
members = [ | ||
"cargo-n64", | ||
"examples/n64lib", | ||
"examples/hello-ipl3font", | ||
] | ||
[package] | ||
name = "cargo-n64" | ||
version = "0.2.0" | ||
authors = ["Jay Oster <jay@kodewerx.org>"] | ||
repository = "https://github.com/rust-console/cargo-n64" | ||
description = "Cargo subcommand to build Nintendo 64 ROMs" | ||
license = "MIT" | ||
readme = "README.md" | ||
categories = ["command-line-utilities", "development-tools", "embedded"] | ||
keywords = ["cli", "cross", "compilation", "nintendo", "n64"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
colored = "2.0" | ||
crc32fast = "1.2" | ||
error-iter = "0.2" | ||
fatfs = "0.3" | ||
goblin = { version = "0.5", default-features = false, features = ["std", "elf32", "elf64", "endian_fd"] } | ||
gumdrop = "0.8" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
thiserror = "1.0" | ||
|
||
[profile.release] | ||
lto = "thin" |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.