-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgo.mod
26 lines (22 loc) · 779 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
module github.com/robbilie/nginx-jwt-auth
go 1.21
toolchain go1.22.5
require (
github.com/MicahParks/keyfunc/v3 v3.3.3
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/prometheus/client_golang v1.19.1
github.com/umisama/go-regexpcache v0.0.0-20150417035358-2444a542492f
go.uber.org/zap v1.27.0
)
require (
github.com/MicahParks/jwkset v0.5.18 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/common v0.48.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/time v0.5.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
)