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
warning: trait objects without an explicit dyn are deprecated
... range patterns are deprecated
unreachable pattern (this one has to do with the fact that Rust wasn't able to tell when a match pattern was exhaustive if you used all of the scalar values for a type, but now it appears to handle that correctly)
use of deprecated item 'try': use the ? operator instead
You can run cargo build -v 2>&1 | grep warning | sort | uniq to get a summary.
The text was updated successfully, but these errors were encountered:
On master,
cargo build
emits 237 warnings.Here are the different kinds of warnings:
dyn
are deprecated...
range patterns are deprecated?
operator insteadYou can run
cargo build -v 2>&1 | grep warning | sort | uniq
to get a summary.The text was updated successfully, but these errors were encountered: