diff --git a/crates/manifest/src/schema/v2.rs b/crates/manifest/src/schema/v2.rs index 14c433ee1..4397dbccc 100644 --- a/crates/manifest/src/schema/v2.rs +++ b/crates/manifest/src/schema/v2.rs @@ -203,14 +203,6 @@ pub struct ComponentDependencies { pub inner: Map, } -impl TryFrom> for ComponentDependencies { - type Error = anyhow::Error; - - fn try_from(value: Map) -> Result { - Ok(ComponentDependencies { inner: value }) - } -} - impl ComponentDependencies { /// This method validates the correct specification of dependencies in a /// component section of the manifest. See the documentation on the methods