You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// DependencyLayerContributorMetadata returns the subset of data from BuildpackDependency that is use as expected metadata for the DependencyLayerContributor.
99
+
typeDependencyLayerContributorMetadatastruct {
100
+
// ID is the dependency ID.
101
+
IDstring`toml:"id"`
102
+
103
+
// Name is the dependency name.
104
+
Namestring`toml:"name"`
105
+
106
+
// Version is the dependency version.
107
+
Versionstring`toml:"version"`
108
+
109
+
// SHA256 is the hash of the dependency.
110
+
SHA256string`toml:"sha256"`
111
+
}
112
+
113
+
// GetMetadata return the relevant metadata of this dependency
0 commit comments