Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Now using a channel that ties back to Rust 1.65.0
Browse files Browse the repository at this point in the history
There were issues building out on non ARM linux for me, that doesn't
happen in Github Actions for some reason, that was stopping local dev.
The crux of the issue was 1.65.0 was upgraded to 1.78.0 via the previous
channel config and that was missing a feature something was using to
compile, specifically it was

error[E0635]: unknown feature `proc_macro_span_shrink`
  --> /home/pfrank/.asdf/installs/rust/1.65.0/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.46/src/lib.rs:92:30
   |
92 |     feature(proc_macro_span, proc_macro_span_shrink)
   |                              ^^^^^^^^^^^^^^^^^^^^^^

This fixed that.
  • Loading branch information
pfrank13 committed Mar 19, 2024
1 parent 56d0db0 commit f2ab71d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "nightly-2024-02-04"
channel = "stable-2022-11-03"
components = [ "rustc" ]
targets = [ "x86_64-pc-windows-gnu", "aarch64-unknown-linux-gnu", "x86_64-pc-windows-gnu" ]
profile = "minimal"

0 comments on commit f2ab71d

Please sign in to comment.