-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Go to 1.23 and fetch latest package dependencies (#23)
This PR updates the required version of Go to 1.23 and fetches the latest module updates for all dependencies in go.mod
- Loading branch information
Showing
2 changed files
with
142 additions
and
657 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,35 +1,46 @@ | ||
module github.com/bitly/tsplot | ||
|
||
go 1.20 | ||
go 1.23 | ||
|
||
require ( | ||
cloud.google.com/go v0.80.0 | ||
github.com/spf13/cobra v1.1.3 | ||
golang.org/x/image v0.0.0-20210220032944-ac19c3e999fb | ||
gonum.org/v1/plot v0.9.0 | ||
google.golang.org/api v0.43.0 | ||
google.golang.org/genproto v0.0.0-20210401141331-865547bb08e2 | ||
google.golang.org/protobuf v1.26.0 | ||
cloud.google.com/go/monitoring v1.22.1 | ||
golang.org/x/image v0.23.0 | ||
gonum.org/v1/plot v0.15.0 | ||
google.golang.org/api v0.216.0 | ||
google.golang.org/genproto v0.0.0-20250106144421-5f5ef82da422 | ||
google.golang.org/genproto/googleapis/api v0.0.0-20250106144421-5f5ef82da422 | ||
) | ||
|
||
require ( | ||
github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af // indirect | ||
github.com/fogleman/gg v1.3.0 // indirect | ||
github.com/go-fonts/liberation v0.1.1 // indirect | ||
github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07 // indirect | ||
cloud.google.com/go/auth v0.14.0 // indirect | ||
cloud.google.com/go/auth/oauth2adapt v0.2.7 // indirect | ||
cloud.google.com/go/compute/metadata v0.6.0 // indirect | ||
git.sr.ht/~sbinet/gg v0.6.0 // indirect | ||
github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b // indirect | ||
github.com/campoy/embedmd v1.0.0 // indirect | ||
github.com/go-fonts/liberation v0.3.3 // indirect | ||
github.com/go-latex/latex v0.0.0-20240709081214-31cef3c7570e // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-pdf/fpdf v0.9.0 // indirect | ||
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect | ||
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect | ||
github.com/golang/protobuf v1.5.1 // indirect | ||
github.com/google/go-cmp v0.5.5 // indirect | ||
github.com/googleapis/gax-go/v2 v2.0.5 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/phpdave11/gofpdf v1.4.2 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4 // indirect | ||
golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84 // indirect | ||
golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4 // indirect | ||
golang.org/x/text v0.3.5 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/grpc v1.36.1 // indirect | ||
github.com/google/s2a-go v0.1.9 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect | ||
github.com/googleapis/gax-go/v2 v2.14.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
go.opentelemetry.io/auto/sdk v1.1.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 // indirect | ||
go.opentelemetry.io/otel v1.33.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.33.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.33.0 // indirect | ||
golang.org/x/crypto v0.32.0 // indirect | ||
golang.org/x/net v0.34.0 // indirect | ||
golang.org/x/oauth2 v0.25.0 // indirect | ||
golang.org/x/sync v0.10.0 // indirect | ||
golang.org/x/sys v0.29.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
golang.org/x/time v0.9.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20250106144421-5f5ef82da422 // indirect | ||
google.golang.org/grpc v1.69.4 // indirect | ||
google.golang.org/protobuf v1.36.2 // indirect | ||
) |
Oops, something went wrong.