use crate::{DepsConfig, ResolvedProject}; use camino::Utf8Path; use std::path::Path; pub fn resolve_project(cfg: &DepsConfig, path: &Path) -> anyhow::Result { let project_dir = Utf8Path::from_path(path).unwrap(); todo!() }