-
Notifications
You must be signed in to change notification settings - Fork 18
/
go.mod
30 lines (27 loc) · 910 Bytes
/
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
module github.com/nielsAD/gowarcraft3
go 1.17
require (
github.com/fatih/color v1.15.0
github.com/ftrvxmtrx/tga v0.0.0-20150524081124-bd8e8d5be13a
github.com/google/gopacket v1.1.19
github.com/gorilla/websocket v1.5.0
github.com/imdario/mergo v0.3.14
github.com/jybp/casc v0.0.0-20200704130859-86bc4664bb8a
github.com/kyokomi/emoji/v2 v2.2.12
github.com/miekg/dns v1.1.52
go.dedis.ch/protobuf v1.0.11
golang.org/x/net v0.8.0
golang.org/x/sys v0.6.0
golang.org/x/term v0.6.0
honnef.co/go/tools v0.4.3
)
require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/exp/typeparams v0.0.0-20230315142452-642cacee5cc0 // indirect
golang.org/x/mod v0.9.0 // indirect
golang.org/x/tools v0.7.0 // indirect
)