-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies and used Go version
- Loading branch information
1 parent
8b44009
commit df3d2f1
Showing
4 changed files
with
297 additions
and
116 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,25 +1,32 @@ | ||
module github.com/flownative/localbeach | ||
|
||
require ( | ||
cloud.google.com/go v0.75.0 // indirect | ||
cloud.google.com/go/storage v1.12.0 | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect | ||
github.com/kr/pretty v0.1.0 // indirect | ||
cloud.google.com/go/storage v1.18.2 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.2.1 | ||
google.golang.org/api v0.59.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.97.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/googleapis/gax-go/v2 v2.1.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect | ||
github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546 // indirect | ||
github.com/sirupsen/logrus v1.4.2 | ||
github.com/spf13/cobra v0.0.5 | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/mod v0.4.1 // indirect | ||
golang.org/x/net v0.0.0-20210119194325-5f4716e94777 // indirect | ||
golang.org/x/oauth2 v0.0.0-20210113205817-d3ed898aa8a3 // indirect | ||
golang.org/x/text v0.3.5 // indirect | ||
golang.org/x/tools v0.1.0 // indirect | ||
google.golang.org/api v0.36.0 | ||
google.golang.org/genproto v0.0.0-20210119180700-e258113e47cc // indirect | ||
google.golang.org/grpc v1.35.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/yaml.v2 v2.2.4 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
golang.org/x/net v0.0.0-20211020060615-d418f374d309 // indirect | ||
golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1 // indirect | ||
golang.org/x/sys v0.0.0-20211020174200-9d6173849985 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20211020151524-b7c3a969101a // indirect | ||
google.golang.org/grpc v1.41.0 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
) | ||
|
||
go 1.13 | ||
go 1.17 |
Oops, something went wrong.