github.com/anchore/syft@v1.4.2-0.20240516191711-1bec1fc5d397/syft/pkg/elixir.go (about) 1 package pkg 2 3 // ElixirMixLockEntry is a struct that represents a single entry in a mix.lock file 4 type ElixirMixLockEntry 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 }