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
num, by way of its subcrates' dependency rustc-serialize, is provoking this warning for me on Rust 1.68 which is now stable:
warning: the following packages contain code that will be rejected by a future version of Rust: rustc-serialize v0.3.24
note: to see what the problems were, use the option --future-incompat-report, or run cargo report future-incompatibilities --id 1
rustc-serialize is itself deprecated:
NOTE: This crate is deprecated in favor of serde. No new feature development will happen in this crate, although bug fixes proposed through PRs will still be merged. It is very highly recommended by the Rust Library Team that you use serde, not this crate.
It may be possible to get rustc-serialize to fix this; or it could be replaced with the far more widely adopted serde.
Just giving a heads up that this is on its way at some point.
FYI this is of interest to me because my Umpire project has num as a transitive dependency, by way of pitch_calc.
The text was updated successfully, but these errors were encountered:
That dependency was removed almost 5 years ago when num 0.2.0 was released, but pitch_calc is using 0.1, and unfortunately rustc-serialize was enabled in the default features back then. They're not actually using that though -- in fact they could even pare down to just num-traits.
It looks like other repos in the RustAudio org are still active, so maybe you can ask them to update that.
num
, by way of its subcrates' dependencyrustc-serialize
, is provoking this warning for me on Rust 1.68 which is now stable:rustc-serialize
is itself deprecated:It may be possible to get
rustc-serialize
to fix this; or it could be replaced with the far more widely adoptedserde
.Just giving a heads up that this is on its way at some point.
FYI this is of interest to me because my Umpire project has
num
as a transitive dependency, by way ofpitch_calc
.The text was updated successfully, but these errors were encountered: