-
Notifications
You must be signed in to change notification settings - Fork 9
/
go.mod
37 lines (34 loc) · 1.27 KB
/
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
33
34
35
36
37
module github.com/bodgit/tsig
go 1.18
require (
github.com/alexbrainman/sspi v0.0.0-20180613141037-e580b900e9f5
github.com/bodgit/gssapi v0.0.2
github.com/enceve/crypto v0.0.0-20160707101852-34d48bb93815
github.com/go-logr/logr v1.4.2
github.com/hashicorp/go-multierror v1.1.1
github.com/jcmturner/gokrb5/v8 v8.4.4
github.com/jinzhu/copier v0.4.0
github.com/miekg/dns v1.1.62
github.com/openshift/gssapi v0.0.0-20161010215902-5fb4217df13b
github.com/stretchr/testify v1.9.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
github.com/jcmturner/gofork v1.7.6 // indirect
github.com/jcmturner/goidentity/v6 v6.0.1 // indirect
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/afero v1.10.0 // indirect
golang.org/x/crypto v0.25.0 // indirect
golang.org/x/mod v0.18.0 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/text v0.16.0 // indirect
golang.org/x/tools v0.22.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)