-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
63 lines (59 loc) · 2.44 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
module github.com/ouyangzhongmin/gameserver
go 1.20
replace (
golang.org/x/crypto => github.com/golang/crypto v0.0.0-20181001203147-e3636079e1a4
golang.org/x/net => github.com/golang/net v0.0.0-20180926154720-4dfa2610cdf3
golang.org/x/sys => github.com/golang/sys v0.0.0-20180928133829-e4b3c5e90611
golang.org/x/text => github.com/golang/text v0.3.0
)
require (
github.com/DanPlayer/randomname v1.0.1
github.com/go-sql-driver/mysql v1.4.0
github.com/go-xorm/core v0.6.0
github.com/go-xorm/xorm v0.7.0
github.com/google/gops v0.3.28
github.com/google/uuid v1.2.0
github.com/gorilla/mux v1.6.2
github.com/lonng/nano v0.5.1
github.com/lonng/nex v1.4.1
github.com/pborman/uuid v1.2.0
github.com/sirupsen/logrus v1.6.0
github.com/spf13/viper v1.2.1
github.com/urfave/cli v1.22.5
github.com/xxtea/xxtea-go v0.0.0-20170828040851-35c4b17eecf6
golang.org/x/crypto v0.23.0
golang.org/x/net v0.25.0
golang.org/x/text v0.15.0
gopkg.in/chanxuehong/wechat.v2 v2.0.0-20180924084534-7e0579cb5377
)
require (
github.com/bwmarrin/snowflake v0.3.0 // indirect
github.com/chanxuehong/rand v0.0.0-20180830053958-4b3aff17f488 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect
github.com/denisenkom/go-mssqldb v0.12.3 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/go-xorm/builder v0.0.0-20180322150003-a9b7ffcca3f0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/gorilla/context v1.1.2 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
github.com/lib/pq v1.10.9 // indirect
github.com/magiconair/properties v1.8.0 // indirect
github.com/mattn/go-sqlite3 v1.14.24 // indirect
github.com/mitchellh/mapstructure v1.0.0 // indirect
github.com/pelletier/go-toml v1.2.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/spf13/afero v1.1.2 // indirect
github.com/spf13/cast v1.2.0 // indirect
github.com/spf13/jwalterweatherman v1.0.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.9.0 // indirect
github.com/ziutek/mymysql v1.5.4 // indirect
golang.org/x/sys v0.20.0 // indirect
google.golang.org/appengine v1.5.0 // indirect
google.golang.org/genproto v0.0.0-20210630183607-d20f26d13c79 // indirect
google.golang.org/grpc v1.39.0 // indirect
google.golang.org/protobuf v1.34.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)