-
Notifications
You must be signed in to change notification settings - Fork 6
/
go.mod
66 lines (63 loc) · 2.88 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
64
65
66
// ___ ___ ___
// / /\ /__/\ /__/\
// / /:/_ \ \:\ \ \:\
// / /:/ /\ \ \:\ \ \:\
// / /:/ /::\ ___ \ \:\ _____\__\:\
// /__/:/ /:/\:\ /__/\ \__\:\ /__/::::::::\
// \ \:\/:/~/:/ \ \:\ / /:/ \ \:\~~\~~\/
// \ \::/ /:/ \ \:\ /:/ \ \:\ ~~~
// \__\/ /:/ \ \:\/:/ \ \:\
// /__/:/ \ \::/ \ \:\
// \__\/ \__\/ \__\/
//
//MIT License
//
//Copyright (c) 2020 Jviguy
//
//Permission is hereby granted, free of charge, to any person obtaining a copy
//of this software and associated documentation files (the "Software"), to deal
//in the Software without restriction, including without limitation the rights
//to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
//copies of the Software, and to permit persons to whom the Software is
//furnished to do so, subject to the following conditions:
//
//The above copyright notice and this permission notice shall be included in all
//copies or substantial portions of the Software.
//
//THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
//IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
//FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
//AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
//LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
//OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
//SOFTWARE.
module github.com/sunproxy/sun
go 1.14
require (
github.com/fatih/color v1.12.0
github.com/golang/protobuf v1.4.3 // indirect
github.com/google/go-cmp v0.5.4 // indirect
github.com/google/uuid v1.3.0
github.com/hlts2/round-robin v0.0.0-20200401070650-85eb7643d48c
github.com/klauspost/compress v1.11.7 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.8
github.com/muhammadmuzzammil1998/jsonc v0.0.0-20201229145248-615b0916ca38 // indirect
github.com/pelletier/go-toml v1.9.4
github.com/robertkrimen/otto v0.0.0-20200922221731-ef014fd054ac
github.com/sandertv/go-raknet v1.10.0 // indirect
github.com/sandertv/gophertunnel v1.14.3
github.com/stretchr/testify v1.7.0 // indirect
go.uber.org/atomic v1.9.0
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
golang.org/x/image v0.0.0-20201208152932-35266b937fa6 // indirect
golang.org/x/net v0.0.0-20210119194325-5f4716e94777 // indirect
golang.org/x/oauth2 v0.0.0-20210201163806-010130855d6c // indirect
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect
golang.org/x/text v0.3.5 // indirect
google.golang.org/appengine v1.6.7 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
gopkg.in/yaml.v2 v2.4.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)