mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
* Handle GOEXPERIMENTs in go version Signed-off-by: Jon Johnson <jon.johnson@chainguard.dev> * bump JSON schema Signed-off-by: Will Murphy <will.murphy@anchore.com> --------- Signed-off-by: Jon Johnson <jon.johnson@chainguard.dev> Signed-off-by: Will Murphy <will.murphy@anchore.com> Co-authored-by: Will Murphy <will.murphy@anchore.com>
18 lines
926 B
Go
18 lines
926 B
Go
package pkg
|
|
|
|
// GolangBinaryBuildinfoEntry represents all captured data for a Golang binary
|
|
type GolangBinaryBuildinfoEntry struct {
|
|
BuildSettings KeyValues `json:"goBuildSettings,omitempty" cyclonedx:"goBuildSettings"`
|
|
GoCompiledVersion string `json:"goCompiledVersion" cyclonedx:"goCompiledVersion"`
|
|
Architecture string `json:"architecture" cyclonedx:"architecture"`
|
|
H1Digest string `json:"h1Digest,omitempty" cyclonedx:"h1Digest"`
|
|
MainModule string `json:"mainModule,omitempty" cyclonedx:"mainModule"`
|
|
GoCryptoSettings []string `json:"goCryptoSettings,omitempty" cyclonedx:"goCryptoSettings"`
|
|
GoExperiments []string `json:"goExperiments,omitempty" cyclonedx:"goExperiments"`
|
|
}
|
|
|
|
// GolangModuleEntry represents all captured data for a Golang source scan with go.mod/go.sum
|
|
type GolangModuleEntry struct {
|
|
H1Digest string `json:"h1Digest,omitempty" cyclonedx:"h1Digest"`
|
|
}
|