-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgo.mod
41 lines (38 loc) · 1.52 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
module github.com/interlynk-io/sbomasm
go 1.20
require (
github.com/CycloneDX/cyclonedx-go v0.7.1
github.com/Masterminds/semver/v3 v3.2.1
github.com/google/go-github/v52 v52.0.0
github.com/google/uuid v1.3.0
github.com/mitchellh/copystructure v1.2.0
github.com/mitchellh/hashstructure/v2 v2.0.2
github.com/samber/lo v1.38.1
github.com/spdx/tools-golang v0.5.0
github.com/spf13/cobra v1.7.0
go.uber.org/zap v1.24.0
gopkg.in/yaml.v2 v2.4.0
sigs.k8s.io/release-utils v0.7.3
)
require (
github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8 // indirect
github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 // indirect
github.com/cloudflare/circl v1.1.0 // indirect
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/spdx/gordf v0.0.0-20201111095634-7098f93598fb // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/exp v0.0.0-20220303212507-bbda1eaf7a17 // indirect
golang.org/x/net v0.9.0 // indirect
golang.org/x/oauth2 v0.7.0 // indirect
golang.org/x/sys v0.7.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
)