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
Using the macro literal_matcher_from_pattern! requires adding lazy_static to Cargo.toml in the consuming crate.
If I understand this stack overflow answer correctly this can be fixed by exporting lazy_static (maybe with #[doc(hidden)]?) and refer to it via $crate::lazy_static::lazy_static.
The text was updated successfully, but these errors were encountered:
Using the macro
literal_matcher_from_pattern!
requires addinglazy_static
toCargo.toml
in the consuming crate.If I understand this stack overflow answer correctly this can be fixed by exporting
lazy_static
(maybe with #[doc(hidden)]?) and refer to it via$crate::lazy_static::lazy_static
.The text was updated successfully, but these errors were encountered: