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
Hmm, the problem here is that the macro-generated deref impl for lazy statics uses an unsafe block because it accesses a 'static mut. In #124 we're removing the need for 'static mut, so we should be able to work properly with crates that #![forbid(unsafe_code)].
Hi,
I'm trying to use
#![forbid(unsafe_code)]
but I also want to uselazy_static!()
- is there a way?My failling travis job is here
The text was updated successfully, but these errors were encountered: