We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I believe this is the case. In particular I have a crate with a doctest that uses serde_json:
serde_json
/// ``` /// use serde_json; /// ... (use serde_json here)
and cargo udeps reports the crate as not being used:
my_crate v0.1.0 (/path/to/my_crate)` └─── (dev-)dependencies └─── "serde_json"
However cargo test (correctly) fails if I remove the crate.
cargo test
(note: I'm running cargo udeps --all-targets).
cargo udeps --all-targets
The text was updated successfully, but these errors were encountered:
Yes, it's a known issue:
cargo-udeps/src/lib.rs
Line 413 in 6e0b233
Sorry, something went wrong.
Thanks for the quick response! Anything we can do about it?
#4 could solve it. But it's a larger project.
No branches or pull requests
I believe this is the case. In particular I have a crate with a doctest that uses
serde_json
:and cargo udeps reports the crate as not being used:
However
cargo test
(correctly) fails if I remove the crate.(note: I'm running
cargo udeps --all-targets
).The text was updated successfully, but these errors were encountered: