-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to latest egui master (#8787)
### Contains these notable fixes * emilk/egui#5631 * emilk/egui#5555
- Loading branch information
Showing
5 changed files
with
29 additions
and
24 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
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 |
---|---|---|
|
@@ -186,9 +186,7 @@ def cargo_deny(results: list[Result]) -> None: | |
# Note: running just `cargo deny check` without a `--target` can result in | ||
# false positives due to https://github.com/EmbarkStudios/cargo-deny/issues/324 | ||
# Installing is quite quick if it's already installed. | ||
# | ||
# `cargo-deny` 0.16.2 raises MSRV 1.81.0, we're not there yet. | ||
results.append(run_cargo("install", "--locked [email protected]")) | ||
results.append(run_cargo("install", "--locked cargo-deny")) | ||
results.append(run_cargo("deny", "--all-features --log-level error --target aarch64-apple-darwin check")) | ||
results.append(run_cargo("deny", "--all-features --log-level error --target i686-pc-windows-gnu check")) | ||
results.append(run_cargo("deny", "--all-features --log-level error --target i686-pc-windows-msvc check")) | ||
|