forked from rust-lang/cargo
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SOL] Adjustments for Rust 1.79 upgrade
- Loading branch information
Showing
3 changed files
with
15 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,6 +107,10 @@ fn lint_self_incompatible_with_rust_version() { | |
.with_stderr( | ||
"\ | ||
[ERROR] rustc [..] is not supported by the following package: | ||
Note that this is the rustc version that ships with Solana tools and \ | ||
not your system's rustc version. Use `solana-install update` or head \ | ||
over to https://docs.solanalabs.com/cli/install to install a newer version. | ||
[email protected] requires rustc 1.9876.0 | ||
", | ||
|
@@ -166,6 +170,11 @@ fn lint_dep_incompatible_with_rust_version() { | |
[DOWNLOADED] too_new_child v0.0.1 (registry `[..]`) | ||
[DOWNLOADED] rustc_compatible v0.0.1 (registry `[..]`) | ||
[ERROR] rustc [..] is not supported by the following packages: | ||
Note that this is the rustc version that ships with Solana \ | ||
tools and not your system's rustc version. Use `solana-install \ | ||
update` or head over to https://docs.solanalabs.com/cli/install \ | ||
to install a newer version. | ||
[email protected] requires rustc 1.2345.0 | ||
[email protected] requires rustc 1.2345.0 | ||
Either upgrade rustc or select compatible dependency versions with | ||
|