mirror of
https://github.com/anchore/syft.git
synced 2026-02-12 02:26:42 +01:00
51 lines
1.2 KiB
Go
51 lines
1.2 KiB
Go
package rust
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/pelletier/go-toml"
|
|
|
|
"github.com/anchore/syft/syft/artifact"
|
|
"github.com/anchore/syft/syft/file"
|
|
"github.com/anchore/syft/syft/pkg"
|
|
"github.com/anchore/syft/syft/pkg/cataloger/generic"
|
|
)
|
|
|
|
var _ generic.Parser = parseCargoLock
|
|
|
|
type cargoLockFile struct {
|
|
Packages []pkg.RustCargoLockEntry `toml:"package"`
|
|
}
|
|
|
|
// parseCargoLock is a parser function for Cargo.lock contents, returning all rust cargo crates discovered.
|
|
func parseCargoLock(_ context.Context, _ file.Resolver, _ *generic.Environment, reader file.LocationReadCloser) ([]pkg.Package, []artifact.Relationship, error) {
|
|
tree, err := toml.LoadReader(reader)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("unable to load Cargo.lock for parsing: %w", err)
|
|
}
|
|
|
|
m := cargoLockFile{}
|
|
err = tree.Unmarshal(&m)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("unable to parse Cargo.lock: %w", err)
|
|
}
|
|
|
|
var pkgs []pkg.Package
|
|
|
|
for _, p := range m.Packages {
|
|
if p.Dependencies == nil {
|
|
p.Dependencies = make([]string, 0)
|
|
}
|
|
pkgs = append(
|
|
pkgs,
|
|
newPackageFromCargoMetadata(
|
|
p,
|
|
reader.Location.WithAnnotation(pkg.EvidenceAnnotationKey, pkg.PrimaryEvidenceAnnotation),
|
|
),
|
|
)
|
|
}
|
|
|
|
return pkgs, nil, nil
|
|
}
|