Describe the bug
We had some team members report issues when installing wasmer on MacOS with rustc 1.75.0 and Ruby 3.2.2. I was able to reproduce when I upgraded my rustc to 1.75.0, but when returning to 1.73.0 (which is what I was on prior), installation worked.
Steps to reproduce
- install v1.75.0 of rustc
- attempt to install the gem
Expected behavior
I'd expect the gem to compile and install successfully.
Actual behavior
When attempting to install with rustc 1.75.0, we get the following:
Compiling wasmer v1.0.0 (/Users/{user}/.rbenv/versions/3.2.2/lib/ruby/gems/3.2.0/gems/wasmer-1.0.0/crates/wasmer)
error: unused import: `ClassInfo`
--> crates/wasmer/src/prelude.rs:3:62
|
3 | pub use rutie_derive::{rubyclass, rubyfunction, rubymethods, ClassInfo, UpcastRubyClass};
| ^^^^^^^^^
|
note: the lint level is defined here
--> crates/wasmer/src/lib.rs:1:9
|
1 | #![deny(warnings)]
| ^^^^^^^^
= note: `#[deny(unused_imports)]` implied by `#[deny(warnings)]`
error: could not compile `wasmer` (lib) due to previous error
rake aborted!
Describe the bug
We had some team members report issues when installing wasmer on MacOS with rustc 1.75.0 and Ruby 3.2.2. I was able to reproduce when I upgraded my rustc to 1.75.0, but when returning to 1.73.0 (which is what I was on prior), installation worked.
Steps to reproduce
Expected behavior
I'd expect the gem to compile and install successfully.
Actual behavior
When attempting to install with rustc 1.75.0, we get the following: