-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathgo.mod
More file actions
23 lines (20 loc) · 698 Bytes
/
go.mod
File metadata and controls
23 lines (20 loc) · 698 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/maurice2k/tcpserver
go 1.19
require (
github.com/maurice2k/ultrapool v1.2.0
github.com/panjf2000/gnet v1.6.6
github.com/tidwall/evio v1.0.8
github.com/valyala/fasthttp v1.40.0
)
require (
github.com/andybalholm/brotli v1.0.4 // indirect
github.com/kavu/go_reuseport v1.5.0 // indirect
github.com/klauspost/compress v1.15.11 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.23.0 // indirect
golang.org/x/sys v0.0.0-20221006211917-84dc82d7e875 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
)