-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathgo.mod
More file actions
56 lines (51 loc) · 1.98 KB
/
go.mod
File metadata and controls
56 lines (51 loc) · 1.98 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
module github.com/chainreactors/rem
go 1.20
require (
github.com/Microsoft/go-winio v0.5.1
github.com/chainreactors/logs v0.0.0-20250312104344-9f30fa69d3c9
github.com/chainreactors/proxyclient v1.0.4-0.20260218115902-74a84a4535b0
github.com/golang/snappy v1.0.0
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/klauspost/reedsolomon v1.12.0
github.com/miekg/dns v1.1.62
github.com/pkg/errors v0.9.1
github.com/shadowsocks/go-shadowsocks2 v0.1.5
github.com/sirupsen/logrus v1.9.3
github.com/stretchr/testify v1.10.0
github.com/templexxx/xorsimd v0.4.3
github.com/tjfoc/gmsm v1.4.1
github.com/xtaci/lossyconn v0.0.0-20190602105132-8df528c0c9ae
golang.zx2c4.com/wireguard v0.0.0-20230325221338-052af4a8072b
golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
gvisor.dev/gvisor v0.0.0-20221203005347-703fd9b7fbc0
nhooyr.io/websocket v1.8.17
)
// compatibility
require (
golang.org/x/crypto v0.33.0
golang.org/x/net v0.40.0
golang.org/x/sys v0.33.0 // indirect
golang.org/x/text v0.16.0 // indirect
)
require (
github.com/chainreactors/files v0.0.0-20231102192550-a652458cee26 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/btree v1.0.1 // indirect
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/riobard/go-bloom v0.0.0-20200614022211-cdc8013cb5b3 // indirect
github.com/templexxx/cpu v0.1.1 // indirect
golang.org/x/mod v0.18.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
golang.org/x/tools v0.22.0 // indirect
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
replace (
golang.org/x/crypto => golang.org/x/crypto v0.24.0
golang.org/x/net => golang.org/x/net v0.23.0
golang.org/x/sys => golang.org/x/sys v0.30.0
)