github.com/anchore/syft@v1.4.2-0.20240516191711-1bec1fc5d397/syft/pkg/erlang.go (about)

     1  package pkg
     2  
     3  // ErlangRebarLockEntry represents a single package entry from the "deps" section within an Erlang rebar.lock file.
     4  type ErlangRebarLockEntry struct {
     5  	Name       string `mapstructure:"name" json:"name"`
     6  	Version    string `mapstructure:"version" json:"version"`
     7  	PkgHash    string `mapstructure:"pkgHash" json:"pkgHash"`
     8  	PkgHashExt string `mapstructure:"pkgHashExt" json:"pkgHashExt"`
     9  }