Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
For users who build tokio-console by installing it with
cargo
, it iscommon to use the
--locked
flag to indicate that the dependencyversions from the lock file should be used. So it's worth having those
dependencies up to date.
This change checks in the result of running
cargo update
withoutchanging the manifest (
Cargo.toml
) files.The patch (pre-1.0 minor) version change to
tonic-build
included adeprecation (rename) and some clippy lint allow directives in the
generated Rust files.
The update to
tracing
in the lockfile from 0.1.37 to 0.1.40 includesthe changes from tokio-rs/tracing#2562. This change causes an
instrumented future to be entered one final time when the future is
dropped, so that any code run in the drop implementation will be in the
scope of the span. This causes the number of polls recorded for a task
to be incremented by 1 right before it is dropped.
Due to this change, some of the
console-subscriber
tests needed to beupdated. This behaviour was already present for many application using
the
console-subscriber
, but not yet in the tests because we hadn'tupdated the lockfile for a while.