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
The problem is that we have this line in Cargo.toml:
std = ["digest/std"]
That is, if you enable the std feature of this crate, then you also need the std feature of digest. The intention is that this should only matter ifdigest is enabled as an optional dependency. However, what it actually means is that enabling std always enables digest. This isn't a huge deal, because digest is small. But it does mean that digest isn't properly gated behind our traits-preview feature.
The text was updated successfully, but these errors were encountered:
Tracking issue: rust-lang/cargo#8832
The problem is that we have this line in Cargo.toml:
That is, if you enable the
std
feature of this crate, then you also need thestd
feature ofdigest
. The intention is that this should only matter ifdigest
is enabled as an optional dependency. However, what it actually means is that enablingstd
always enablesdigest
. This isn't a huge deal, becausedigest
is small. But it does mean thatdigest
isn't properly gated behind ourtraits-preview
feature.The text was updated successfully, but these errors were encountered: