-
Notifications
You must be signed in to change notification settings - Fork 2
/
go.mod
30 lines (27 loc) · 995 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/openziti/identity
go 1.19
require (
github.com/fsnotify/fsnotify v1.7.0
github.com/michaelquigley/pfxlog v0.6.10
github.com/miekg/pkcs11 v1.1.1
github.com/openziti/foundation/v2 v2.0.56
github.com/parallaxsecond/parsec-client-go v0.0.0-20210416104105-e2d188152601
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.10.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-cmp v0.5.7 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/onsi/ginkgo v1.16.4 // indirect
github.com/onsi/gomega v1.13.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.1.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/term v0.28.0 // indirect
google.golang.org/protobuf v1.28.0 // indirect
)