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
I believe this is because the macro expansion includes use ::bstr::{ByteSlice, BStr};.
this means a user would need to add bstr as a dependency - see this Stack Overflow question.
afaik, there are ways to deal with this, such as re-exporting.
The text was updated successfully, but these errors were encountered:
hey, on my machine this example
in
Cargo.toml
:...results in
I believe this is because the macro expansion includes
use ::bstr::{ByteSlice, BStr};
.this means a user would need to add
bstr
as a dependency - see this Stack Overflow question.afaik, there are ways to deal with this, such as re-exporting.
The text was updated successfully, but these errors were encountered: