github.com/anchore/syft@v1.4.2-0.20240516191711-1bec1fc5d397/syft/pkg/dart.go (about) 1 package pkg 2 3 // DartPubspecLockEntry is a struct that represents a single entry found in the "packages" section in a Dart pubspec.lock file. 4 type DartPubspecLockEntry struct { 5 Name string `mapstructure:"name" json:"name"` 6 Version string `mapstructure:"version" json:"version"` 7 HostedURL string `mapstructure:"hosted_url" json:"hosted_url,omitempty"` 8 VcsURL string `mapstructure:"vcs_url" json:"vcs_url,omitempty"` 9 }