-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgo.mod
30 lines (26 loc) · 988 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
30
module github.com/hamstah/awstools/lambda/sign-ssh-key
go 1.21
toolchain go1.21.0
require (
github.com/alecthomas/kingpin/v2 v2.3.2
github.com/aws/aws-lambda-go v1.41.0
github.com/hamstah/awstools/common v0.0.0-20230905015132-d23905c12bb5
github.com/hashicorp/go-uuid v1.0.3
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.8.4
golang.org/x/crypto v0.13.0
)
require (
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/aws/aws-sdk-go v1.45.11 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/hakobe/paranoidhttp v0.3.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
golang.org/x/sys v0.12.0 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)