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 reason will be displayed to describe this comment to others. Learn more.
@siddhantk232 when doing cargo update, do also check at Cargo.toml file and see which all versions are out of date. I use RustRover and it shows:
Some versions we do not update, e.g., the ones squiggly lined above (do update them if you are willing to wade through versioning conflicts), but others, we do, e.g., wasmtime. Doing a cargo check --tests is enough. I first do a cargo update && cargo check --tests, then one by one increment each squiggly lined one, and if they compile I keep, else revert and move to next.
6a9c938
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@siddhantk232 when doing
cargo update
, do also check atCargo.toml
file and see which all versions are out of date. I use RustRover and it shows:Some versions we do not update, e.g., the ones squiggly lined above (do update them if you are willing to wade through versioning conflicts), but others, we do, e.g.,
wasmtime
. Doing acargo check --tests
is enough. I first do acargo update && cargo check --tests
, then one by one increment each squiggly lined one, and if they compile I keep, else revert and move to next.