-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathgo.mod
62 lines (58 loc) · 2.2 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
module github.com/bitbomdev/minefield
go 1.23.1
require (
connectrpc.com/connect v1.18.1
connectrpc.com/cors v0.1.0
github.com/Masterminds/semver v1.5.0
github.com/RoaringBitmap/roaring v1.9.4
github.com/alecthomas/participle/v2 v2.1.1
github.com/go-redis/redis/v8 v8.11.5
github.com/goccy/go-json v0.10.4
github.com/google/go-cmp v0.6.0
github.com/google/wire v0.6.0
github.com/olekukonko/tablewriter v0.0.5
github.com/package-url/packageurl-go v0.1.3
github.com/protobom/protobom v0.5.0
github.com/spf13/cobra v1.8.1
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.10.0
github.com/zeebo/assert v1.3.1
golang.org/x/net v0.34.0
google.golang.org/protobuf v1.36.4
gorm.io/driver/sqlite v1.5.7
gorm.io/gorm v1.25.12
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
require (
github.com/CycloneDX/cyclonedx-go v0.9.1 // indirect
github.com/alecthomas/assert/v2 v2.6.0 // indirect
github.com/alecthomas/repr v0.4.0 // indirect
github.com/anchore/go-struct-converter v0.0.0-20240925125616-a0883641c664 // indirect
github.com/bits-and-blooms/bitset v1.16.0 // indirect
github.com/blang/semver/v4 v4.0.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/mattn/go-sqlite3 v1.14.24 // indirect
github.com/mschoch/smat v0.2.0 // indirect
github.com/onsi/gomega v1.30.0 // indirect
github.com/philippgille/chromem-go v0.7.0
github.com/rs/cors v1.11.1
github.com/sashabaranov/go-openai v1.36.1
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/spdx/tools-golang v0.5.5 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
sigs.k8s.io/release-utils v0.8.5 // indirect
)