-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
55 lines (52 loc) · 2.18 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
module github.com/zachmann/go-oidfed
go 1.22
require (
github.com/TwiN/gocache/v2 v2.2.2
github.com/adam-hanna/arrayOperations v1.0.1
github.com/dgraph-io/badger/v4 v4.5.1
github.com/fatih/structs v1.1.0
github.com/go-resty/resty/v2 v2.16.5
github.com/gofiber/fiber/v2 v2.52.6
github.com/google/go-querystring v1.1.0
github.com/google/uuid v1.6.0
github.com/jarcoal/httpmock v1.3.1
github.com/lestrrat-go/jwx v1.2.30
github.com/luci/go-render v0.0.0-20160219211803-9a04cc21af0f
github.com/pkg/errors v0.9.1
github.com/redis/go-redis/v9 v9.7.0
github.com/scylladb/go-set v1.0.3-0.20200225121959-cc7b2070d91e
github.com/vmihailenco/msgpack/v5 v5.4.1
golang.org/x/crypto v0.32.0
gopkg.in/yaml.v3 v3.0.1
tideland.dev/go/slices v0.2.0
)
require (
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
github.com/dgraph-io/ristretto/v2 v2.1.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/goccy/go-json v0.10.3 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/google/flatbuffers v24.12.23+incompatible // indirect
github.com/klauspost/compress v1.17.11 // indirect
github.com/lestrrat-go/backoff/v2 v2.0.8 // indirect
github.com/lestrrat-go/blackmagic v1.0.2 // indirect
github.com/lestrrat-go/httpcc v1.0.1 // indirect
github.com/lestrrat-go/iter v1.0.2 // indirect
github.com/lestrrat-go/option v1.0.1 // 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/rivo/uniseg v0.2.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.51.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
golang.org/x/net v0.34.0 // indirect
golang.org/x/sys v0.29.0 // indirect
google.golang.org/protobuf v1.36.3 // indirect
)