-
Notifications
You must be signed in to change notification settings - Fork 290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
loom dependency pulled in by default #411
Comments
Ah, sorry, I got confused by cargo update calling this out, but it doesn't look like this gets built without |
Yeah, cargo writes all Also, |
Since #392 (by @taiki-e), it looks like loom went from a dev-dependency to a default dependency. It's guarded by
cfg(loom)
, but I'm not sure if that's working as intended. My application now seems to be pulling in loom as a dependency ofbytes
even though I didn't specify anyloom
cfg. As far as I understand, loom should only be used for testing?The text was updated successfully, but these errors were encountered: