-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathgo.mod
25 lines (22 loc) · 836 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
module github.com/anchore/harbor-scanner-adapter
go 1.22.5
require (
github.com/aws/aws-sdk-go v1.55.5
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
github.com/gorilla/mux v1.8.1
github.com/parnurzeal/gorequest v0.3.0
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.10.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/elazarl/goproxy v0.0.0-20230731152917-f99041a5c027 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/moul/http2curl v1.0.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.18.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)