-
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.
Upgrade to Go 1.23.2 and update some dependencies
- Loading branch information
Showing
4 changed files
with
143 additions
and
126 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,60 +1,72 @@ | ||
module github.com/vishen/go-chromecast | ||
|
||
go 1.21 | ||
go 1.23.2 | ||
|
||
require ( | ||
cloud.google.com/go/texttospeech v1.6.0 | ||
cloud.google.com/go/texttospeech v1.9.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.3 | ||
github.com/jroimartin/gocui v0.5.0 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/rogpeppe/go-internal v1.8.1 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.4.0 | ||
github.com/stretchr/testify v1.8.1 | ||
golang.org/x/net v0.23.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
google.golang.org/api v0.114.0 | ||
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 | ||
github.com/rogpeppe/go-internal v1.13.1 | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/spf13/cobra v1.8.1 | ||
github.com/stretchr/testify v1.9.0 | ||
golang.org/x/net v0.30.0 // indirect | ||
golang.org/x/sys v0.26.0 // indirect | ||
google.golang.org/api v0.204.0 | ||
google.golang.org/genproto v0.0.0-20241021214115-324edc3d5d38 | ||
) | ||
|
||
require github.com/seancfoley/ipaddress-go v1.5.5 | ||
require github.com/seancfoley/ipaddress-go v1.7.0 | ||
|
||
require gopkg.in/ini.v1 v1.67.0 | ||
|
||
require ( | ||
cloud.google.com/go v0.110.0 // indirect | ||
cloud.google.com/go/compute v1.19.1 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
cloud.google.com/go/longrunning v0.4.1 // indirect | ||
cloud.google.com/go v0.116.0 // indirect | ||
cloud.google.com/go/auth v0.10.0 // indirect | ||
cloud.google.com/go/auth/oauth2adapt v0.2.5 // indirect | ||
cloud.google.com/go/compute/metadata v0.5.2 // indirect | ||
cloud.google.com/go/longrunning v0.6.2 // indirect | ||
github.com/cenkalti/backoff v2.2.1+incompatible // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect | ||
github.com/googleapis/gax-go/v2 v2.7.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/google/s2a-go v0.1.8 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect | ||
github.com/googleapis/gax-go/v2 v2.13.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/mattn/go-runewidth v0.0.16 // indirect | ||
github.com/miekg/dns v1.1.62 // indirect | ||
github.com/nsf/termbox-go v1.1.1 // indirect | ||
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/seancfoley/bintree v1.2.3 // indirect | ||
github.com/rivo/uniseg v0.4.7 // indirect | ||
github.com/seancfoley/bintree v1.3.1 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/objx v0.5.0 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/oauth2 v0.7.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.6.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/grpc v1.56.3 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
gopkg.in/errgo.v2 v2.1.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.56.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.56.0 // indirect | ||
go.opentelemetry.io/otel v1.31.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.31.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.31.0 // indirect | ||
golang.org/x/crypto v0.28.0 // indirect | ||
golang.org/x/mod v0.21.0 // indirect | ||
golang.org/x/oauth2 v0.23.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/text v0.19.0 // indirect | ||
golang.org/x/time v0.7.0 // indirect | ||
golang.org/x/tools v0.26.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20241021214115-324edc3d5d38 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20241021214115-324edc3d5d38 // indirect | ||
google.golang.org/grpc v1.67.1 // indirect | ||
google.golang.org/protobuf v1.35.1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.