Updated Rust to the latest - 1.80.0, and noticed that `cargo add` no longer displays a list of disabled features. (I'm not sure if this change was introduced in the latest version.)

I used this feature frequently to check what features are available in a crate, so I find this very inconvenient. I have tried to find a way to display this information in the latest version, but so far I haven't been successful.

#Rust #RustLang

@typester Oh that's disappointing. I also use the list of inactive features as a quick check for "did I mess up and forget to include an important feature?"

@alilleybrinker @typester Maybe because there are too many features? I can't test it right now. Did you try adding `-v`?

Anyway, I use cargo-information for discovering features:

https://github.com/hi-rustin/cargo-information

GitHub - hi-rustin/cargo-information: https://github.com/rust-lang/cargo/issues/948

https://github.com/rust-lang/cargo/issues/948. Contribute to hi-rustin/cargo-information development by creating an account on GitHub.

GitHub
@mo8it @alilleybrinker Yeah I tried with --verbose, but no luck. Thank you for the info about cargo-information, I didn't know that, will try!

@typester @mo8it @alilleybrinker Yes, its because of quantity. Its hard to pick numbers and we can tweak them. We should also make `--verbose` show them.

`cargo info` should also match `cargo add`.