Check dependency version

How can I check version of crate that one of my dependecies depends on?
That is I depend on tokio and tokio in turn depends on crate_A. How to check the crate_A version on my system?
Thank you

You can use cargo tree to see the dependency tree. Another option is to look in your Cargo.lock file.

Thank you.

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.