You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, megaton-hammer is a bit of a mess: it contains both stuff meant for stdlib consuption, stuff meant for user consuption, and stuff meant for "overlay library" consuption. The abstraction boundaries are unclear, and implementation details leak all over the place.
So let's take a look at one particular issue: megaton_hammer::loader. This module is, sadly, public, even though it should really be internal. This is mostly due to one issue: std needs access to megaton_hammer::loader::Logger.
The text was updated successfully, but these errors were encountered:
Right now, megaton-hammer is a bit of a mess: it contains both stuff meant for stdlib consuption, stuff meant for user consuption, and stuff meant for "overlay library" consuption. The abstraction boundaries are unclear, and implementation details leak all over the place.
So let's take a look at one particular issue:
megaton_hammer::loader
. This module is, sadly, public, even though it should really be internal. This is mostly due to one issue: std needs access tomegaton_hammer::loader::Logger
.The text was updated successfully, but these errors were encountered: