mirror of
https://github.com/anchore/syft.git
synced 2025-11-20 01:43:17 +01:00
Signed-off-by: Alex Goodman <alex.goodman@anchore.com> Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
10 lines
329 B
Go
10 lines
329 B
Go
package pkg
|
|
|
|
type CargoPackageMetadata struct {
|
|
Name string `toml:"name" json:"name"`
|
|
Version string `toml:"version" json:"version"`
|
|
Source string `toml:"source" json:"source"`
|
|
Checksum string `toml:"checksum" json:"checksum"`
|
|
Dependencies []string `toml:"dependencies" json:"dependencies"`
|
|
}
|