We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ea5314d + 4f8c619 commit 68279e3Copy full SHA for 68279e3
crates/project_model/src/cargo_workspace.rs
@@ -354,15 +354,6 @@ impl CargoWorkspace {
354
CargoWorkspace { packages, targets, workspace_root }
355
}
356
357
- pub fn from_cargo_metadata3(
358
- cargo_toml: &ManifestPath,
359
- config: &CargoConfig,
360
- progress: &dyn Fn(String),
361
- ) -> Result<CargoWorkspace> {
362
- let meta = CargoWorkspace::fetch_metadata(cargo_toml, config, progress)?;
363
- Ok(CargoWorkspace::new(meta))
364
- }
365
-
366
pub fn packages<'a>(&'a self) -> impl Iterator<Item = Package> + ExactSizeIterator + 'a {
367
self.packages.iter().map(|(id, _pkg)| id)
368
0 commit comments