-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathgo.mod
More file actions
66 lines (63 loc) · 2.59 KB
/
go.mod
File metadata and controls
66 lines (63 loc) · 2.59 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
module github.com/go-oidfed/lib
go 1.25.1
require (
github.com/ThalesGroup/crypto11 v1.6.0
github.com/TwiN/gocache/v2 v2.4.0
github.com/adam-hanna/arrayOperations v1.0.1
github.com/coreos/go-oidc/v3 v3.18.0
github.com/go-resty/resty/v2 v2.17.2
github.com/gofiber/fiber/v2 v2.52.13
github.com/google/go-querystring v1.2.0
github.com/google/uuid v1.6.0
github.com/jarcoal/httpmock v1.4.1
github.com/lestrrat-go/jwx/v3 v3.1.0
github.com/lithammer/fuzzysearch v1.1.8
github.com/luci/go-render v0.0.0-20160219211803-9a04cc21af0f
github.com/pkg/errors v0.9.1
github.com/redis/go-redis/v9 v9.19.0
github.com/scylladb/go-set v1.0.3-0.20200225121959-cc7b2070d91e
github.com/sirupsen/logrus v1.9.4
github.com/stretchr/testify v1.11.1
github.com/vmihailenco/msgpack/v5 v5.4.1
github.com/zachmann/go-utils v0.0.0-20251216142941-208653c379f5
golang.org/x/crypto v0.50.0
golang.org/x/oauth2 v0.36.0
golang.org/x/text v0.36.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.1 // indirect
github.com/fatih/structs v1.1.0 // indirect
github.com/go-jose/go-jose/v4 v4.1.4 // indirect
github.com/goccy/go-json v0.10.6 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/klauspost/compress v1.17.9 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/lestrrat-go/blackmagic v1.0.4 // indirect
github.com/lestrrat-go/dsig v1.2.1 // indirect
github.com/lestrrat-go/dsig-secp256k1 v1.0.0 // indirect
github.com/lestrrat-go/httpcc v1.0.1 // indirect
github.com/lestrrat-go/httprc/v3 v3.0.5 // indirect
github.com/lestrrat-go/option/v2 v2.0.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/miekg/pkcs11 v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/rogpeppe/go-internal v1.13.1 // indirect
github.com/segmentio/asm v1.2.1 // indirect
github.com/thales-e-security/pool v0.0.2 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.51.0 // indirect
github.com/valyala/fastjson v1.6.10 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
golang.org/x/net v0.52.0 // indirect
golang.org/x/sys v0.43.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)