8 lines
248 B
Rust

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