-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
41 lines (36 loc) · 1.33 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/sbomgr
go 1.21
toolchain go1.21.5
require (
github.com/CycloneDX/cyclonedx-go v0.9.0
github.com/google/go-github/v52 v52.0.0
github.com/google/uuid v1.6.0
github.com/olekukonko/tablewriter v0.0.5
github.com/spdx/tools-golang v0.5.5
github.com/spf13/cobra v1.8.1
go.uber.org/zap v1.27.0
gopkg.in/yaml.v2 v2.4.0
sigs.k8s.io/release-utils v0.8.4
)
require (
github.com/anchore/go-struct-converter v0.0.0-20230627203149-c72ef8859ca9 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
)
require (
github.com/Masterminds/semver/v3 v3.3.0
github.com/ProtonMail/go-crypto v1.0.0 // indirect
github.com/cloudflare/circl v1.4.0 // indirect
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/spdx/gordf v0.0.0-20221230105357-b735bd5aac89 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/oauth2 v0.22.0 // indirect
golang.org/x/sys v0.24.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)