-
Notifications
You must be signed in to change notification settings - Fork 15
/
go.mod
64 lines (61 loc) · 2.69 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
56
57
58
59
60
61
62
63
64
module go-websocket-benchmark
go 1.21.1
require (
github.com/antlabs/greatws v0.2.2
github.com/antlabs/quickws v0.2.2
github.com/bytedance/gopkg v0.0.0-20230531144706-a12972768317
github.com/cloudwego/hertz v0.8.1
github.com/fasthttp/websocket v1.5.8
github.com/go-netty/go-netty-ws v1.0.7
github.com/gobwas/ws v1.3.2
github.com/gorilla/websocket v1.5.1
github.com/hertz-contrib/pprof v0.1.2
github.com/hertz-contrib/websocket v0.1.0
github.com/lesismal/nbio v1.5.3-0.20240402073628-1fd013c5307d
github.com/lesismal/perf v0.0.0-20240508164715-fdb92a70ac1c
github.com/libp2p/go-reuseport v0.4.0
github.com/lxzan/gws v1.8.3
golang.org/x/time v0.3.0
nhooyr.io/websocket v1.8.10
)
require (
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/antlabs/cpuproc v0.0.0-20240615150837-aa4bcf33806c // indirect
github.com/antlabs/wsutil v0.1.11 // indirect
github.com/bytedance/go-tagexpr/v2 v2.9.2 // indirect
github.com/bytedance/sonic v1.8.1 // indirect
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
github.com/cloudwego/netpoll v0.5.0 // indirect
github.com/dolthub/maphash v0.1.0 // indirect
github.com/felixge/fgprof v0.9.3 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/go-netty/go-netty v1.6.5 // indirect
github.com/go-netty/go-netty-transport v1.7.10 // indirect
github.com/go-ole/go-ole v1.3.0 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/pprof v0.0.0-20211214055906-6f57359322fd // indirect
github.com/henrylee2cn/ameda v1.4.10 // indirect
github.com/henrylee2cn/goutil v0.0.0-20210127050712-89660552f6f8 // indirect
github.com/klauspost/compress v1.17.8 // indirect
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
github.com/lesismal/llib v1.1.13 // indirect
github.com/nyaruka/phonenumbers v1.0.55 // indirect
github.com/savsgio/gotils v0.0.0-20240303185622-093b76447511 // indirect
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
github.com/tidwall/gjson v1.14.4 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/tklauser/go-sysconf v0.3.14 // indirect
github.com/tklauser/numcpus v0.8.0 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.52.0 // indirect
github.com/yusufpapurcu/wmi v1.2.4 // indirect
golang.org/x/arch v0.0.0-20210923205945-b76863e36670 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/net v0.23.0 // indirect
golang.org/x/sys v0.20.0 // indirect
google.golang.org/protobuf v1.28.0 // indirect
)