Skip to content
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

document and enforce minimum rustc requirement of 1.49.0 #266

Merged
merged 1 commit into from
May 15, 2021

Conversation

jeremyandrews
Copy link
Member

@jeremyandrews jeremyandrews commented May 8, 2021

In the event that goose is compiled with an earlier version of rustc it will fail and provide a helpful error:

   Compiling goose v0.11.1-dev (~/goose)
error: failed to run custom build command for `goose v0.11.1-dev (~/goose)`

Caused by:
  process didn't exit successfully: `~/goose/target/release/build/goose-0b1c363936c37b47/build-script-build` (exit code: 1)
  --- stderr
  goose dependency `flume` depends on `spinning_top` crate which requires rustc >= 1.49.0.
  detected rustc version: 1.48.0
  note: see issue #55002 <https:/rust-lang/rust/issues/55002> for more information

Prior to this change, compilation of goose instead failed with a more confusing error:

   Compiling spinning_top v0.2.3
error[E0658]: use of unstable library feature 'renamed_spin_loop'
  --> /home/jandrews/.cargo/registry/src/github.com-1ecc6299db9ec823/spinning_top-0.2.3/src/spinlock.rs:57:17
   |
57 |                 hint::spin_loop();
   |                 ^^^^^^^^^^^^^^^
   |
   = note: see issue #55002 <https:/rust-lang/rust/issues/55002> for more information

error: aborting due to previous error

For more information about this error, try `rustc --explain E0658`.
error: could not compile `spinning_top`.

To learn more, run the command again with --verbose.
warning: build failed, waiting for other jobs to finish...
error: build failed

@jeremyandrews jeremyandrews merged commit a9f3df9 into tag1consulting:main May 15, 2021
@jeremyandrews jeremyandrews deleted the minrust branch May 16, 2021 05:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

document and/or enforce minimum rust version
1 participant