-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
32 lines (28 loc) · 1001 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
31
32
module bilalekrem.com/certstore
go 1.17
require (
github.com/go-acme/lego/v4 v4.6.0
google.golang.org/grpc v1.38.0
google.golang.org/protobuf v1.27.1
)
require (
github.com/cenkalti/backoff/v4 v4.1.1 // indirect
github.com/miekg/dns v1.1.43 // indirect
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
)
require (
github.com/golang/mock v1.6.0
github.com/golang/protobuf v1.5.2 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/spf13/cobra v1.2.1
github.com/spf13/pflag v1.0.5 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
go.uber.org/zap v1.19.1
golang.org/x/net v0.0.0-20210510120150-4163338589ed // indirect
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
golang.org/x/text v0.3.6 // indirect
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
)