-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
29 lines (26 loc) · 1.01 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
module github.com/qumine/minecraft-server
go 1.19
require (
github.com/artdarek/go-unzip v1.0.1-0.20210323073738-f9883ad8bd15
github.com/gdamore/tcell/v2 v2.7.4
github.com/magiconair/properties v1.8.7
github.com/rivo/tview v0.0.0-20220911190240-55965cf21d8e
github.com/sirupsen/logrus v1.9.3
github.com/urfave/cli/v2 v2.27.4
google.golang.org/grpc v1.65.0
google.golang.org/protobuf v1.34.2
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
github.com/gdamore/encoding v1.0.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/rivo/uniseg v0.4.3 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/term v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect
)