-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update rust toolchain and several misc changes (#1732)
Misc changes while working on other stuff - Update rust to 1.67.1 and made change to .cargo/config.toml to get it to work - Changed hangar so that it stops spitting out `undefined` when the cli errors - Updated wasi-sdk to the latest version, and changed the install scripts that it installs a tool within the repo itself (gitignored) - This avoids using sudo in the install - It is also now a versioned dir, this should make it easier to make sure everyone stays in sync whenever it changes - Added WingPoint, and made better use of `Into`, `From`, and `Default` so that and WingSpan for some hopefully more idiomatic rust experiences - Added "lint" as a cached nx operation. This should be okay since it relies on changes to src files - Made sure clippy runs with release and a couple of other flags when needed, to avoid unnecessary compilations in CI - Run rustfmt in "lint" - Add "--fix" arg to clippy Fixes #813 *By submitting this pull request, I confirm that my contribution is made under the terms of the [Monada Contribution License](https://docs.winglang.io/terms-and-policies/contribution-license.html)*.
- Loading branch information
1 parent
5b1c4ab
commit 4fbf84d
Showing
28 changed files
with
317 additions
and
258 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[env] | ||
CC_wasm32_wasi = "/opt/wasi-sdk/bin/clang" | ||
AR_wasm32_wasi = "/opt/wasi-sdk/bin/ar" | ||
WASI_SDK = { value = ".cargo/wasi-sdk-19.0", relative = true } | ||
CC_wasm32_wasi = { value = ".cargo/wasi-sdk-19.0/bin/clang", relative = true } | ||
AR_wasm32_wasi = { value = ".cargo/wasi-sdk-19.0/bin/ar", relative = true } |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.