-
Notifications
You must be signed in to change notification settings - Fork 2
Bump Rust toolchain to 1.97.1 #52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| [toolchain] | ||
| channel = "1.92.0" | ||
| channel = "1.97.1" | ||
| components = ["clippy", "rustfmt"] | ||
| targets = ["x86_64-apple-darwin", "aarch64-apple-darwin", "x86_64-unknown-linux-gnu"] | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,7 +27,7 @@ impl Reference { | |
| .for_pack(name) | ||
| .context(format!( | ||
| "Reference#defining_pack_name is {}, but that pack is not found in pack set.", | ||
| &name | ||
| name | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Flagging this one site as the one worth actually reading rather than skimming, since it isn't the simple case the rest of the diff is.
It is still correct to remove it: the blanket |
||
| ))?)) | ||
| } else { | ||
| Ok(None) | ||
|
|
@@ -40,7 +40,7 @@ impl Reference { | |
| ) -> anyhow::Result<&'a Pack> { | ||
| pack_set.for_pack(&self.referencing_pack_name). | ||
| context(format!("Reference#referencing_pack_name is {}, but that pack is not found in pack set.", | ||
| &self.referencing_pack_name)) | ||
| self.referencing_pack_name)) | ||
| } | ||
| } | ||
|
|
||
|
|
@@ -59,7 +59,7 @@ impl Reference { | |
| Some(pack_name) => pack_name, | ||
| None => bail!( | ||
| "Could not find pack for referencing file path: {}", | ||
| &referencing_file_path.display() | ||
| referencing_file_path.display() | ||
| ), | ||
| }; | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Non-blocking: 1.98.0 shipped 2026-08-18, so "the current stable release" in the description is now one behind. Pinning one release back is defensible — just noting the wording no longer matches if landing on current stable was the intent.