I tried to use lazy_static
. I wrote
#[macro_use]
extern crate lazy_static;
And got this error message:
error[E0464]: multiple matching crates for
lazy_static
Can you fix it?
Edit: Apparently all it takes is to add lazy_static to [dependencies]
.