-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update golang.org/x/crypto, switch to Go modules. (#22)
This change updates golang.org/x/crypto to address #19, while also updating the dependency management system to Go modules.
- Loading branch information
1 parent
40a3bed
commit a40ba71
Showing
5 changed files
with
17 additions
and
76 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
language: go | ||
go: | ||
- "1.10.x" | ||
- "1.11.x" | ||
go: | ||
- "1.13.x" | ||
install: | ||
- go get -u github.com/golang/dep/cmd/dep | ||
- go mod download | ||
script: | ||
- make | ||
- make test |
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module github.com/suyashkumar/ssl-proxy | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 | ||
github.com/pmezard/go-difflib v1.0.0 | ||
github.com/stretchr/testify v1.2.2 | ||
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 | ||
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 | ||
golang.org/x/text v0.3.2 | ||
) |