This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
forked from Happy2018new/PhoenixBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
61 lines (56 loc) · 2.26 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
module phoenixbuilder
go 1.18
require (
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
rogchap.com/v8go v0.7.0
)
require (
github.com/atomicgo/cursor v0.0.1 // indirect
github.com/df-mc/goleveldb v1.1.9 // indirect
github.com/golang/snappy v0.0.1 // indirect
github.com/gookit/color v1.4.2 // indirect
github.com/klauspost/cpuid v1.3.1 // indirect
github.com/klauspost/reedsolomon v1.9.9 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mmcloughlin/avo v0.0.0-20200803215136-443f81d77104 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/syndtr/goleveldb v1.0.0 // indirect
github.com/templexxx/cpu v0.0.7 // indirect
github.com/templexxx/xorsimd v0.4.1 // indirect
github.com/tjfoc/gmsm v1.3.2 // indirect
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8 // indirect
golang.org/x/mod v0.3.0 // indirect
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
golang.org/x/tools v0.0.0-20200808161706-5bf02b21f123 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)
replace rogchap.com/v8go v0.7.0 => ./depends/[email protected]
require (
github.com/Tnze/go-mc v1.17.0
github.com/andybalholm/brotli v1.0.3
github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb
github.com/brentp/intintmap v0.0.0-20190211203843-30dc0ade9af9
github.com/cespare/xxhash v1.1.0
github.com/disintegration/imaging v1.6.2
github.com/go-gl/mathgl v1.0.0
github.com/google/go-cmp v0.5.7 // indirect
github.com/google/uuid v1.1.2
github.com/gorilla/websocket v1.4.2
github.com/klauspost/compress v1.13.6
github.com/lucasb-eyer/go-colorful v1.2.0
github.com/muhammadmuzzammil1998/jsonc v0.0.0-20211230184646-baf1f7156737
github.com/pelletier/go-toml v1.9.4
github.com/pterm/pterm v0.12.29
github.com/sandertv/go-raknet v1.9.1
github.com/sirupsen/logrus v1.8.1
github.com/xtaci/kcp-go/v5 v5.6.1
go.kuoruan.net/v8go-polyfills v0.5.0
go.uber.org/atomic v1.7.0
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
golang.org/x/net v0.0.0-20220107192237-5cfca573fb4d
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b
golang.org/x/text v0.3.7
gopkg.in/square/go-jose.v2 v2.6.0
)