-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgo.mod
More file actions
63 lines (60 loc) · 2.52 KB
/
go.mod
File metadata and controls
63 lines (60 loc) · 2.52 KB
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/Gophercraft/core
go 1.19
require (
github.com/AlecAivazis/survey/v2 v2.3.6
github.com/Gophercraft/log v0.0.0-20221113041919-c5b5a57db4d4
github.com/Gophercraft/text v0.0.0-20221206232200-55f1d00426ea
github.com/Velocidex/binparsergen v0.1.0
github.com/Velocidex/go-pe v0.1.0
github.com/arl/math32 v0.2.0
github.com/bwmarrin/discordgo v0.26.1
github.com/davecgh/go-spew v1.1.1
github.com/dchest/captcha v1.0.0
github.com/fatih/color v1.13.0
github.com/go-sql-driver/mysql v1.6.0
github.com/go-xorm/xorm v0.7.9
github.com/golang/protobuf v1.5.2
github.com/google/uuid v1.3.0
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
github.com/mattn/go-sqlite3 v1.14.16
github.com/mitchellh/go-ps v1.0.0
github.com/spf13/cobra v1.6.1
github.com/superp00t/etc v0.9.2
github.com/syndtr/goleveldb v1.0.0
github.com/ulikunitz/xz v0.5.10
github.com/yuin/gopher-lua v0.0.0-20220504180219-658193537a64
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e
golang.org/x/tools v0.1.9
google.golang.org/grpc v1.50.1
google.golang.org/protobuf v1.28.1
xorm.io/xorm v1.3.2
)
require (
github.com/adrg/strutil v0.3.0 // indirect
github.com/cybriq/gotiny v0.0.5 // indirect
github.com/goccy/go-json v0.8.1 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/hashicorp/golang-lru v1.0.1 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.1 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/nathan-fiscaletti/consolesize-go v0.0.0-20220204101620-317176b6684d // indirect
github.com/niubaoshu/gotiny v0.0.3 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/mod v0.6.0-dev // indirect
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
golang.org/x/sys v0.2.0 // indirect
golang.org/x/term v0.2.0 // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
xorm.io/builder v0.3.11-0.20220531020008-1bd24a7dc978 // indirect
xorm.io/core v0.7.2-0.20190928055935-90aeac8d08eb // indirect
)