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

Nit/rustc warnings20240222 #159

Merged
merged 4 commits into from
Feb 22, 2024

Commits on Feb 22, 2024

  1. Configuration menu
    Copy the full SHA
    ca5df40 View commit details
    Browse the repository at this point in the history
  2. Change the import location of tracing macros in thetawave_storage::us…

    …er_stats. Bevy reexports the tracing module rather than reexporting the logging macros in the prelude. The existing import locations for the bevy tracing macros was deprecated/changed in v0.12
    varoonp123 committed Feb 22, 2024
    Configuration menu
    Copy the full SHA
    461ca6a View commit details
    Browse the repository at this point in the history
  3. Rustc started warning more about redundant imports. Remove most of th…

    …e redundant imports and make imports more explicit by replacing star imports with each individual item
    varoonp123 committed Feb 22, 2024
    Configuration menu
    Copy the full SHA
    75d8c3d View commit details
    Browse the repository at this point in the history
  4. Replace as many star imports as I have patience for with explicit ite…

    …m-level imports. Especially modules with many star imports. These have caused more rustc warnings over time. And star imports are generally bad since the pollute the namespace and make imports order-dependent
    varoonp123 committed Feb 22, 2024
    Configuration menu
    Copy the full SHA
    b254bc4 View commit details
    Browse the repository at this point in the history