You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would be cool to point this at a large workspace and have it index all the crates it finds there.
I did something similar for undepend. Something like this should do the trick:
use cargo_metadata::{Metadata,MetadataCommand};let metadata = MetadataCommand::new().manifest_path(repo_dir.join("Cargo.toml")).exec().unwrap();for package in metadata.workspace_members.iter(){}
The text was updated successfully, but these errors were encountered:
Would be cool to point this at a large workspace and have it index all the crates it finds there.
I did something similar for undepend. Something like this should do the trick:
The text was updated successfully, but these errors were encountered: