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

Remove Unused Import #77

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Mar 7, 2024

  1. Remove unused import

    Starting around Rust 1.73 (I think) compiling wasmer started giving this error:
    
          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};
          |                                                              ^^^^^^^^^
          |
    
    This seems to just be an unused struct. Removing it makes it compile and
    everything still seems to work when I use the lib (test suite fails but it
    does under older versions of Rust as well so I don't think that is related).
    Eric Anderson committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    e991b7f View commit details
    Browse the repository at this point in the history