-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgo.mod
52 lines (48 loc) · 2.02 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
module github.com/clubpay/ronykit/example/ex-01-rpc
go 1.22.0
toolchain go1.22.7
require (
github.com/clubpay/ronykit/contrib v0.18.13
github.com/clubpay/ronykit/kit v0.18.13
github.com/clubpay/ronykit/std/gateways/fasthttp v0.18.13
github.com/clubpay/ronykit/std/gateways/fastws v0.18.13
github.com/clubpay/ronykit/stub v0.18.13
github.com/stretchr/testify v1.9.0
)
require (
github.com/andybalholm/brotli v1.1.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fasthttp/router v1.5.3 // indirect
github.com/fasthttp/websocket v1.5.11 // indirect
github.com/go-openapi/jsonpointer v0.21.0 // indirect
github.com/go-openapi/jsonreference v0.21.0 // indirect
github.com/go-openapi/spec v0.21.0 // indirect
github.com/go-openapi/swag v0.23.0 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/gobwas/ws v1.4.0 // indirect
github.com/goccy/go-json v0.10.4 // indirect
github.com/goccy/go-reflect v1.2.0 // indirect
github.com/jedib0t/go-pretty/v6 v6.6.5 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/klauspost/compress v1.17.11 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/panjf2000/ants/v2 v2.10.0 // indirect
github.com/panjf2000/gnet/v2 v2.6.3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rbretecher/go-postman-collection v0.9.0 // indirect
github.com/rivo/uniseg v0.4.3 // indirect
github.com/savsgio/gotils v0.0.0-20240704082632-aef3928b8a38 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.58.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)