forked from awslabs/aws-sigv4-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
24 lines (21 loc) · 738 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
module aws-sigv4-proxy
go 1.17
require (
github.com/aws/aws-sdk-go v1.44.189
github.com/gorilla/mux v1.8.0
github.com/minio/sha256-simd v1.0.0
github.com/sirupsen/logrus v1.9.0
github.com/stretchr/testify v1.8.0
gopkg.in/alecthomas/kingpin.v2 v2.2.6
)
require (
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc // indirect
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/klauspost/cpuid/v2 v2.0.4 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.1.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)