-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use go modules to fix upstream dependency breakage. (#93)
* fix googleapis imports * add go module * use go1.13 * disable vetting other projects * keep stats.Location with comment * tweak required version numbers * go mod tidy
- Loading branch information
Showing
12 changed files
with
335 additions
and
16 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
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
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,20 @@ | ||
module github.com/m-lab/go | ||
|
||
go 1.13 | ||
|
||
require ( | ||
cloud.google.com/go/bigquery v1.3.0 | ||
cloud.google.com/go/datastore v1.0.0 | ||
cloud.google.com/go/storage v1.5.0 | ||
github.com/araddon/dateparse v0.0.0-20190622164848-0fb0a474d195 | ||
github.com/go-test/deep v1.0.4 | ||
github.com/googleapis/google-cloud-go-testing v0.0.0-20191008195207-8e1d251e947d | ||
github.com/kabukky/httpscerts v0.0.0-20150320125433-617593d7dcb3 | ||
github.com/kr/pretty v0.2.0 | ||
github.com/prometheus/client_golang v1.3.0 | ||
github.com/prometheus/prometheus v2.5.0+incompatible | ||
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 | ||
golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6 | ||
google.golang.org/api v0.15.0 | ||
gopkg.in/yaml.v2 v2.2.7 | ||
) |