-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CVE-2020-35381 Closes: #130
- Loading branch information
Showing
3 changed files
with
85 additions
and
221 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,47 @@ | ||
module github.com/vishen/go-chromecast | ||
|
||
go 1.15 | ||
go 1.17 | ||
|
||
require ( | ||
cloud.google.com/go/texttospeech v1.3.0 | ||
github.com/buger/jsonparser v1.0.0 | ||
github.com/buger/jsonparser v1.1.1 | ||
github.com/gogo/protobuf v1.3.2 | ||
github.com/grandcat/zeroconf v1.0.0 | ||
github.com/h2non/filetype v1.1.0 | ||
github.com/jroimartin/gocui v0.4.0 | ||
github.com/h2non/filetype v1.1.3 | ||
github.com/jroimartin/gocui v0.5.0 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/nsf/termbox-go v0.0.0-20201124104050-ed494de23a00 // indirect | ||
github.com/pkg/errors v0.9.1 | ||
github.com/rogpeppe/go-internal v1.6.2 | ||
github.com/sirupsen/logrus v1.7.0 | ||
github.com/spf13/cobra v1.3.0 | ||
google.golang.org/api v0.70.0 | ||
google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.4.0 | ||
google.golang.org/api v0.71.0 | ||
google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.5.0 // indirect | ||
github.com/cenkalti/backoff v2.2.1+incompatible // 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.7 // indirect | ||
github.com/googleapis/gax-go/v2 v2.1.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/mattn/go-runewidth v0.0.13 // indirect | ||
github.com/miekg/dns v1.1.46 // indirect | ||
github.com/nsf/termbox-go v1.1.1 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
golang.org/x/mod v0.5.1 // indirect | ||
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect | ||
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a // indirect | ||
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/tools v0.1.9 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/grpc v1.45.0 // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/errgo.v2 v2.1.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
Oops, something went wrong.