diff --git a/crates/nargo/src/manifest/mod.rs b/crates/nargo/src/manifest/mod.rs index 3331beb81de..ea51d622d82 100644 --- a/crates/nargo/src/manifest/mod.rs +++ b/crates/nargo/src/manifest/mod.rs @@ -1,5 +1,5 @@ use serde::Deserialize; -use std::collections::BTreeMap; +use std::{collections::BTreeMap, path::PathBuf}; mod errors; pub use self::errors::InvalidPackageError; @@ -56,9 +56,9 @@ pub struct Workspace { #[serde(rename_all = "kebab-case")] pub struct WorkspaceConfig { /// List of members in this workspace. - pub members: Vec, + pub members: Vec, /// Specifies the default crate to interact with in the context (similarly to how we have nargo as the default crate in this repository). - pub default_member: Option, + pub default_member: Option, } #[allow(dead_code)]