-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ⬆ Update to go 1.17 * 🏗 Replace unmaintained action crazy-max/ghaction-docker-buildx has been archived. This commit replaces it as per the archival notice. * 🏹 Add darwin-arm64 and windows-arm64 * 🔧 Fix build
- Loading branch information
1 parent
dba2ce6
commit 023a3d9
Showing
5 changed files
with
15 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
module github.com/Qv2ray/mmp-go | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/qv2ray/smaead v0.0.0-20210102113335-316eca415c84 | ||
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad | ||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 | ||
) | ||
|
||
require golang.org/x/sys v0.0.0-20191026070338-33540a1f6037 // indirect |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
//go:build !windows | ||
// +build !windows | ||
|
||
package main | ||
|