pub trait DependencyLike {
// Required methods
fn inherit(&self) -> InheritConfiguration;
fn export(&self) -> &Option<String>;
}
Expand description
A Spin component dependency. This abstracts over the metadata associated with the dependency. The abstraction allows both manifest and lockfile types to participate in composition.