-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgo.mod
More file actions
27 lines (24 loc) · 812 Bytes
/
Copy pathgo.mod
File metadata and controls
27 lines (24 loc) · 812 Bytes
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
module github.com/hyahm/xmux
go 1.25.0
require (
github.com/golang-jwt/jwt/v5 v5.3.0
github.com/hyahm/gocache v0.0.0-20220522145614-dfeab3db5e17
github.com/quic-go/quic-go v0.54.0
github.com/tidwall/gjson v1.14.1
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/kr/pretty v0.3.0 // indirect
github.com/quic-go/qpack v0.5.1 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
go.uber.org/mock v0.5.0 // indirect
golang.org/x/crypto v0.41.0 // indirect
golang.org/x/mod v0.26.0 // indirect
golang.org/x/net v0.43.0 // indirect
golang.org/x/sync v0.16.0 // indirect
golang.org/x/sys v0.35.0 // indirect
golang.org/x/text v0.28.0 // indirect
golang.org/x/tools v0.35.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
)