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.
1 parent 0af7cd9 commit 672a4e4Copy full SHA for 672a4e4
crates/manifest/src/schema/v2.rs
@@ -203,14 +203,6 @@ pub struct ComponentDependencies {
203
pub inner: Map<DependencyName, ComponentDependency>,
204
}
205
206
-impl TryFrom<Map<DependencyName, ComponentDependency>> for ComponentDependencies {
207
- type Error = anyhow::Error;
208
-
209
- fn try_from(value: Map<DependencyName, ComponentDependency>) -> Result<Self, Self::Error> {
210
- Ok(ComponentDependencies { inner: value })
211
- }
212
-}
213
214
impl ComponentDependencies {
215
/// This method validates the correct specification of dependencies in a
216
/// component section of the manifest. See the documentation on the methods
0 commit comments