-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathgo.mod
29 lines (25 loc) · 844 Bytes
/
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
module github.com/openvex/go-vex
go 1.22
require (
github.com/google/go-cmp v0.6.0
github.com/in-toto/in-toto-golang v0.9.0
github.com/owenrumney/go-sarif v1.1.1
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/secure-systems-lab/go-securesystemslib v0.6.0 // indirect
github.com/zclconf/go-cty v1.10.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/text v0.14.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)
require (
github.com/package-url/packageurl-go v0.1.3
github.com/shibumi/go-pathspec v1.3.0 // indirect
github.com/stretchr/testify v1.10.0
golang.org/x/sys v0.15.0 // indirect
)