forked from p4gefau1t/trojan-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: use Go v1.17 & support Windows ARM64 (p4gefau1t#377)
* Chore: use Go v1.17 & support Windows ARM64 * Chore: update workflow
- Loading branch information
1 parent
07fec5e
commit 98cfe18
Showing
8 changed files
with
132 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 1,39 @@ | ||
module github.com/p4gefau1t/trojan-go | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/go-sql-driver/mysql v1.6.0 | ||
github.com/patrickmn/go-cache v2.1.0 incompatible // indirect | ||
github.com/refraction-networking/utls v0.0.0-20201210053706-2179f286686b | ||
github.com/refraction-networking/utls v0.0.0-20210713165636-0b2885c8c0d4 | ||
github.com/shadowsocks/go-shadowsocks2 v0.1.5 | ||
github.com/smartystreets/goconvey v1.6.4 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/txthinking/runnergroup v0.0.0-20210326110939-37fc67d0da7c // indirect | ||
github.com/txthinking/socks5 v0.0.0-20210326104807-61b5745ff346 | ||
github.com/txthinking/x v0.0.0-20210326105829-476fab902fbe // indirect | ||
github.com/v2fly/v2ray-core/v4 v4.39.2 | ||
github.com/txthinking/socks5 v0.0.0-20210716140126-fa1f52a8f2da | ||
github.com/v2fly/v2ray-core/v4 v4.41.1 | ||
github.com/xtaci/smux v1.5.15 | ||
golang.org/x/net v0.0.0-20210525063256-abc453219eb5 | ||
golang.org/x/term v0.0.0-20210503060354-a79de5458b56 | ||
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba | ||
google.golang.org/grpc v1.38.0 | ||
google.golang.org/protobuf v1.26.0 | ||
golang.org/x/net v0.0.0-20210825183410-e898025ed96a | ||
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac | ||
google.golang.org/grpc v1.40.0 | ||
google.golang.org/protobuf v1.27.1 | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20210420193930-a4630ec28c79 // indirect | ||
github.com/jtolds/gls v4.20.0 incompatible // indirect | ||
github.com/patrickmn/go-cache v2.1.0 incompatible // indirect | ||
github.com/pires/go-proxyproto v0.6.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/riobard/go-bloom v0.0.0-20200614022211-cdc8013cb5b3 // indirect | ||
github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d // indirect | ||
github.com/txthinking/runnergroup v0.0.0-20210608031112-152c7c4432bf // indirect | ||
github.com/txthinking/x v0.0.0-20210326105829-476fab902fbe // indirect | ||
go.starlark.net v0.0.0-20210602144842-1cdb82c9e17a // indirect | ||
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect | ||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect | ||
golang.org/x/text v0.3.6 // indirect | ||
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect | ||
) |
Oops, something went wrong.