-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
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
Consider using cargo_metadata instead of cargo crate #76
Comments
As |
@Frederick888 any tracking issue for this incorporation? |
But even if we put this issue aside, since |
Note that there's https://github.com/theduke/crates_io_api for querying crates.io API. So it seems to me that it should not be significantly harder to avoid depending on Cargo? Specifically:
|
It'd be ideal if Cargo exposed its dependency resolution algorithm as a library. Then even the "temp workspace" hack wouldn't be needed — cargo-outdated could read and evaluate data straight from the API. |
It take too long to compile cargo. An alternative is to use cargo_metadata, which offers an api over the
cargo metadata
command.The text was updated successfully, but these errors were encountered: